1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Globalization;
|
---|
25 | using System.IO;
|
---|
26 | using HeuristicLab.Data;
|
---|
27 |
|
---|
28 | namespace HeuristicLab.DataAnalysis {
|
---|
29 | public class DatasetParser {
|
---|
30 | private const string PROBLEMNAME = "PROBLEMNAME";
|
---|
31 | private const string VARIABLENAMES = "VARIABLENAMES";
|
---|
32 | private const string TARGETVARIABLE = "TARGETVARIABLE";
|
---|
33 | private const string MAXIMUMTREEHEIGHT = "MAXIMUMTREEHEIGHT";
|
---|
34 | private const string MAXIMUMTREESIZE = "MAXIMUMTREESIZE";
|
---|
35 | private const string TRAININGSAMPLESSTART = "TRAININGSAMPLESSTART";
|
---|
36 | private const string TRAININGSAMPLESEND = "TRAININGSAMPLESEND";
|
---|
37 | private const string VALIDATIONSAMPLESSTART = "VALIDATIONSAMPLESSTART";
|
---|
38 | private const string VALIDATIONSAMPLESEND = "VALIDATIONSAMPLESEND";
|
---|
39 | private const string TESTSAMPLESSTART = "TESTSAMPLESSTART";
|
---|
40 | private const string TESTSAMPLESEND = "TESTSAMPLESEND";
|
---|
41 | private const string NONINPUTVARIABLES = "NONINPUTVARIABLES";
|
---|
42 | private Tokenizer tokenizer;
|
---|
43 | private Dictionary<string, List<Token>> metadata;
|
---|
44 | private List<List<double>> samplesList;
|
---|
45 |
|
---|
46 | private int rows;
|
---|
47 | public int Rows {
|
---|
48 | get { return rows; }
|
---|
49 | set { rows = value; }
|
---|
50 | }
|
---|
51 |
|
---|
52 | private int columns;
|
---|
53 | public int Columns {
|
---|
54 | get { return columns; }
|
---|
55 | set { columns = value; }
|
---|
56 | }
|
---|
57 |
|
---|
58 | private double[] samples;
|
---|
59 | public double[] Samples {
|
---|
60 | get {
|
---|
61 | return samples;
|
---|
62 | }
|
---|
63 | }
|
---|
64 |
|
---|
65 | public string ProblemName {
|
---|
66 | get {
|
---|
67 | if (metadata.ContainsKey(PROBLEMNAME)) {
|
---|
68 | return metadata[PROBLEMNAME][0].stringValue;
|
---|
69 | } else return "-";
|
---|
70 | }
|
---|
71 | }
|
---|
72 |
|
---|
73 | public string[] VariableNames {
|
---|
74 | get {
|
---|
75 | if (metadata.ContainsKey(VARIABLENAMES)) {
|
---|
76 | List<Token> nameList = metadata[VARIABLENAMES];
|
---|
77 | string[] names = new string[nameList.Count];
|
---|
78 | for (int i = 0; i < names.Length; i++) {
|
---|
79 | names[i] = nameList[i].stringValue;
|
---|
80 | }
|
---|
81 | return names;
|
---|
82 | } else {
|
---|
83 | string[] names = new string[columns];
|
---|
84 | for (int i = 0; i < names.Length; i++) {
|
---|
85 | names[i] = "X" + i.ToString("000");
|
---|
86 | }
|
---|
87 | return names;
|
---|
88 | }
|
---|
89 | }
|
---|
90 | }
|
---|
91 |
|
---|
92 | public int TargetVariable {
|
---|
93 | get {
|
---|
94 | if (metadata.ContainsKey(TARGETVARIABLE)) {
|
---|
95 | return metadata[TARGETVARIABLE][0].intValue;
|
---|
96 | } else return 0; // default is the first column
|
---|
97 | }
|
---|
98 | }
|
---|
99 |
|
---|
100 | public int MaxTreeHeight {
|
---|
101 | get {
|
---|
102 | if (metadata.ContainsKey(MAXIMUMTREEHEIGHT)) {
|
---|
103 | return metadata[MAXIMUMTREEHEIGHT][0].intValue;
|
---|
104 | } else return 0;
|
---|
105 | }
|
---|
106 | }
|
---|
107 |
|
---|
108 | public int MaxTreeSize {
|
---|
109 | get {
|
---|
110 | if (metadata.ContainsKey(MAXIMUMTREESIZE)) {
|
---|
111 | return metadata[MAXIMUMTREESIZE][0].intValue;
|
---|
112 | } else return 0;
|
---|
113 | }
|
---|
114 | }
|
---|
115 |
|
---|
116 | public int TrainingSamplesStart {
|
---|
117 | get {
|
---|
118 | if (metadata.ContainsKey(TRAININGSAMPLESSTART)) {
|
---|
119 | return metadata[TRAININGSAMPLESSTART][0].intValue;
|
---|
120 | } else return 0;
|
---|
121 | }
|
---|
122 | }
|
---|
123 |
|
---|
124 | public int TrainingSamplesEnd {
|
---|
125 | get {
|
---|
126 | if (metadata.ContainsKey(TRAININGSAMPLESEND)) {
|
---|
127 | return metadata[TRAININGSAMPLESEND][0].intValue;
|
---|
128 | } else return rows;
|
---|
129 | }
|
---|
130 | }
|
---|
131 | public int ValidationSamplesStart {
|
---|
132 | get {
|
---|
133 | if (metadata.ContainsKey(VALIDATIONSAMPLESSTART)) {
|
---|
134 | return metadata[VALIDATIONSAMPLESSTART][0].intValue;
|
---|
135 | } else return 0;
|
---|
136 | }
|
---|
137 | }
|
---|
138 |
|
---|
139 | public int ValidationSamplesEnd {
|
---|
140 | get {
|
---|
141 | if (metadata.ContainsKey(VALIDATIONSAMPLESEND)) {
|
---|
142 | return metadata[VALIDATIONSAMPLESEND][0].intValue;
|
---|
143 | } else return rows;
|
---|
144 | }
|
---|
145 | }
|
---|
146 | public int TestSamplesStart {
|
---|
147 | get {
|
---|
148 | if (metadata.ContainsKey(TESTSAMPLESSTART)) {
|
---|
149 | return metadata[TESTSAMPLESSTART][0].intValue;
|
---|
150 | } else return 0;
|
---|
151 | }
|
---|
152 | }
|
---|
153 |
|
---|
154 | public int TestSamplesEnd {
|
---|
155 | get {
|
---|
156 | if (metadata.ContainsKey(TESTSAMPLESEND)) {
|
---|
157 | return metadata[TESTSAMPLESEND][0].intValue;
|
---|
158 | } else return rows;
|
---|
159 | }
|
---|
160 | }
|
---|
161 |
|
---|
162 | public List<int> NonInputVariables {
|
---|
163 | get {
|
---|
164 | List<int> disallowedVariables = new List<int>();
|
---|
165 | if (metadata.ContainsKey(NONINPUTVARIABLES)) {
|
---|
166 | foreach (Token t in metadata[NONINPUTVARIABLES]) {
|
---|
167 | disallowedVariables.Add(t.intValue);
|
---|
168 | }
|
---|
169 | }
|
---|
170 | return disallowedVariables;
|
---|
171 | }
|
---|
172 | }
|
---|
173 |
|
---|
174 | public DatasetParser() {
|
---|
175 | this.metadata = new Dictionary<string, List<Token>>();
|
---|
176 | samplesList = new List<List<double>>();
|
---|
177 | }
|
---|
178 |
|
---|
179 | public void Reset() {
|
---|
180 | metadata.Clear();
|
---|
181 | samplesList.Clear();
|
---|
182 | }
|
---|
183 |
|
---|
184 | public void Import(string importFileName, bool strict) {
|
---|
185 | TryParse(importFileName, strict);
|
---|
186 | // translate the list of samples into a DoubleMatrixData item
|
---|
187 | samples = new double[samplesList.Count * samplesList[0].Count];
|
---|
188 | rows = samplesList.Count;
|
---|
189 | columns = samplesList[0].Count;
|
---|
190 |
|
---|
191 | int i = 0;
|
---|
192 | int j = 0;
|
---|
193 | foreach (List<double> row in samplesList) {
|
---|
194 | j = 0;
|
---|
195 | foreach (double element in row) {
|
---|
196 | samples[i * columns + j] = element;
|
---|
197 | j++;
|
---|
198 | }
|
---|
199 | i++;
|
---|
200 | }
|
---|
201 | }
|
---|
202 |
|
---|
203 | private void TryParse(string importFileName, bool strict) {
|
---|
204 | Exception lastEx = null;
|
---|
205 | NumberFormatInfo[] possibleFormats = new NumberFormatInfo[] { NumberFormatInfo.InvariantInfo, CultureInfo.GetCultureInfo("de-DE").NumberFormat, NumberFormatInfo.CurrentInfo };
|
---|
206 | foreach (NumberFormatInfo numberFormat in possibleFormats) {
|
---|
207 | using (StreamReader reader = new StreamReader(importFileName)) {
|
---|
208 | tokenizer = new Tokenizer(reader, numberFormat);
|
---|
209 | try {
|
---|
210 | // parse the file
|
---|
211 | Parse(strict);
|
---|
212 | return; // parsed without errors -> return;
|
---|
213 | }
|
---|
214 | catch (DataFormatException ex) {
|
---|
215 | lastEx = ex;
|
---|
216 | }
|
---|
217 | }
|
---|
218 | }
|
---|
219 | // all number formats threw an exception -> rethrow the last exception
|
---|
220 | throw lastEx;
|
---|
221 | }
|
---|
222 |
|
---|
223 | #region tokenizer
|
---|
224 | internal enum TokenTypeEnum {
|
---|
225 | At, Assign, NewLine, String, Double, Int, WhiteSpace
|
---|
226 | }
|
---|
227 |
|
---|
228 | internal class Token {
|
---|
229 | public TokenTypeEnum type;
|
---|
230 | public string stringValue;
|
---|
231 | public double doubleValue;
|
---|
232 | public int intValue;
|
---|
233 |
|
---|
234 | public Token(TokenTypeEnum type, string value) {
|
---|
235 | this.type = type;
|
---|
236 | stringValue = value;
|
---|
237 | doubleValue = 0.0;
|
---|
238 | intValue = 0;
|
---|
239 | }
|
---|
240 |
|
---|
241 | public override string ToString() {
|
---|
242 | return stringValue;
|
---|
243 | }
|
---|
244 | }
|
---|
245 |
|
---|
246 |
|
---|
247 | class Tokenizer {
|
---|
248 | private StreamReader reader;
|
---|
249 | private List<Token> tokens;
|
---|
250 | private string[] separators = new string[] { "@", "=", ";", "\t" };
|
---|
251 | private NumberFormatInfo numberFormatInfo;
|
---|
252 |
|
---|
253 | public int CurrentLineNumber = 0;
|
---|
254 | public string CurrentLine;
|
---|
255 |
|
---|
256 | public static Token NewlineToken = new Token(TokenTypeEnum.NewLine, "\n");
|
---|
257 | public static Token AtToken = new Token(TokenTypeEnum.At, "@");
|
---|
258 | public static Token AssignmentToken = new Token(TokenTypeEnum.Assign, "=");
|
---|
259 | public static Token SeparatorToken = new Token(TokenTypeEnum.WhiteSpace, "");
|
---|
260 | public string[] Separators {
|
---|
261 | get { return separators; }
|
---|
262 | set { separators = value; }
|
---|
263 | }
|
---|
264 |
|
---|
265 |
|
---|
266 | public Tokenizer(StreamReader reader, NumberFormatInfo numberFormatInfo) {
|
---|
267 | this.reader = reader;
|
---|
268 | this.numberFormatInfo = numberFormatInfo;
|
---|
269 | tokens = new List<Token>();
|
---|
270 | ReadNextTokens();
|
---|
271 | }
|
---|
272 |
|
---|
273 | private void ReadNextTokens() {
|
---|
274 | if (!reader.EndOfStream) {
|
---|
275 | CurrentLine = reader.ReadLine();
|
---|
276 | Token[] newTokens = Array.ConvertAll(CurrentLine.Split(separators, StringSplitOptions.None), delegate(string str) {
|
---|
277 | return MakeToken(str.Trim());
|
---|
278 | });
|
---|
279 |
|
---|
280 | foreach (Token tok in newTokens) {
|
---|
281 | if (tok != SeparatorToken) tokens.Add(tok);
|
---|
282 | }
|
---|
283 | tokens.Add(NewlineToken);
|
---|
284 | CurrentLineNumber++;
|
---|
285 | }
|
---|
286 | }
|
---|
287 |
|
---|
288 | private Token MakeToken(string strToken) {
|
---|
289 | Token token = new Token(TokenTypeEnum.String, strToken);
|
---|
290 |
|
---|
291 | // try to parse as a number first
|
---|
292 | if (int.TryParse(strToken, NumberStyles.Integer, numberFormatInfo, out token.intValue)) {
|
---|
293 | token.type = TokenTypeEnum.Int;
|
---|
294 | return token;
|
---|
295 | } else if (double.TryParse(strToken, NumberStyles.Float, numberFormatInfo, out token.doubleValue)) {
|
---|
296 | token.type = TokenTypeEnum.Double;
|
---|
297 | return token;
|
---|
298 | } else if (String.IsNullOrEmpty(strToken)) {
|
---|
299 | token.type = TokenTypeEnum.WhiteSpace;
|
---|
300 | return token;
|
---|
301 | }
|
---|
302 | // couldn't parse the token as an int or float number so return a string token
|
---|
303 | return token;
|
---|
304 | }
|
---|
305 |
|
---|
306 | public Token Peek() {
|
---|
307 | return tokens[0];
|
---|
308 | }
|
---|
309 |
|
---|
310 | public Token Next() {
|
---|
311 | Token next = tokens[0];
|
---|
312 | tokens.RemoveAt(0);
|
---|
313 | if (tokens.Count == 0) {
|
---|
314 | ReadNextTokens();
|
---|
315 | }
|
---|
316 | return next;
|
---|
317 | }
|
---|
318 |
|
---|
319 | public bool HasNext() {
|
---|
320 | return tokens.Count > 0 || !reader.EndOfStream;
|
---|
321 | }
|
---|
322 | }
|
---|
323 | #endregion
|
---|
324 |
|
---|
325 | #region parsing
|
---|
326 | private void Parse(bool strict) {
|
---|
327 | ParseMetaData(strict);
|
---|
328 | if (!tokenizer.HasNext()) Error("Couldn't parse data values. Probably because of incorrect number format (the parser expects english number format with a '.' as decimal separator).", "", tokenizer.CurrentLineNumber);
|
---|
329 | ParseSampleData(strict);
|
---|
330 | if (samplesList.Count == 0) Error("Couldn't parse data values. Probably because of incorrect number format (the parser expects english number format with a '.' as decimal separator).", "", tokenizer.CurrentLineNumber);
|
---|
331 | }
|
---|
332 |
|
---|
333 | private void ParseSampleData(bool strict) {
|
---|
334 | List<double> row = new List<double>();
|
---|
335 | while (tokenizer.HasNext()) {
|
---|
336 | Token current = tokenizer.Next();
|
---|
337 | if (current.type == TokenTypeEnum.WhiteSpace) {
|
---|
338 | row.Add(double.NaN);
|
---|
339 | } else if (current.type == TokenTypeEnum.Double) {
|
---|
340 | // just take the value
|
---|
341 | row.Add(current.doubleValue);
|
---|
342 | } else if (current.type == TokenTypeEnum.Int) {
|
---|
343 | // translate the int value to double
|
---|
344 | row.Add((double)current.intValue);
|
---|
345 | } else if (current == Tokenizer.NewlineToken) {
|
---|
346 | // when parsing strictly all rows have to have the same number of values
|
---|
347 | if (strict) {
|
---|
348 | // the first row defines how many samples are needed
|
---|
349 | if (samplesList.Count > 0 && samplesList[0].Count != row.Count) {
|
---|
350 | Error("The first row of the dataset has " + samplesList[0].Count + " columns." +
|
---|
351 | "\nLine " + tokenizer.CurrentLineNumber + " has " + row.Count + " columns.", "", tokenizer.CurrentLineNumber);
|
---|
352 | }
|
---|
353 | } else if (samplesList.Count > 0) {
|
---|
354 | // when we are not strict then fill or drop elements as needed
|
---|
355 | if (samplesList[0].Count > row.Count) {
|
---|
356 | // fill with NAN
|
---|
357 | for (int i = row.Count; i < samplesList[0].Count; i++) {
|
---|
358 | row.Add(double.NaN);
|
---|
359 | }
|
---|
360 | } else if (samplesList[0].Count < row.Count) {
|
---|
361 | // drop last k elements where k = n - length of first row
|
---|
362 | row.RemoveRange(samplesList[0].Count - 1, row.Count - samplesList[0].Count);
|
---|
363 | }
|
---|
364 | }
|
---|
365 |
|
---|
366 | // add the current row to the collection of rows and start a new row
|
---|
367 | samplesList.Add(row);
|
---|
368 | row = new List<double>();
|
---|
369 | } else {
|
---|
370 | // found an unexpected token => return false when parsing strictly
|
---|
371 | // when we are parsing non-strictly we also allow unreadable values inserting NAN instead
|
---|
372 | if (strict) {
|
---|
373 | Error("Unexpected token.", current.stringValue, tokenizer.CurrentLineNumber);
|
---|
374 | } else {
|
---|
375 | row.Add(double.NaN);
|
---|
376 | }
|
---|
377 | }
|
---|
378 | }
|
---|
379 | }
|
---|
380 |
|
---|
381 | private void ParseMetaData(bool strict) {
|
---|
382 | while (tokenizer.HasNext() && (tokenizer.Peek().type == TokenTypeEnum.WhiteSpace || tokenizer.Peek().type == TokenTypeEnum.String)) {
|
---|
383 | while (tokenizer.HasNext() && tokenizer.Peek().type == TokenTypeEnum.WhiteSpace) tokenizer.Next();
|
---|
384 | Token nameToken = tokenizer.Next();
|
---|
385 | if (nameToken.type != TokenTypeEnum.String)
|
---|
386 | Error("Expected a variable name.", nameToken.stringValue, tokenizer.CurrentLineNumber);
|
---|
387 |
|
---|
388 | List<Token> tokens = new List<Token>();
|
---|
389 | Token valueToken;
|
---|
390 | while (tokenizer.HasNext() && tokenizer.Peek().type == TokenTypeEnum.WhiteSpace) valueToken = tokenizer.Next();
|
---|
391 | valueToken = tokenizer.Next();
|
---|
392 | while (valueToken != Tokenizer.NewlineToken) {
|
---|
393 | tokens.Add(valueToken);
|
---|
394 | while (tokenizer.HasNext() && tokenizer.Peek().type == TokenTypeEnum.WhiteSpace) tokenizer.Next();
|
---|
395 | valueToken = tokenizer.Next();
|
---|
396 | }
|
---|
397 |
|
---|
398 | metadata[nameToken.stringValue] = tokens;
|
---|
399 | }
|
---|
400 | }
|
---|
401 |
|
---|
402 | private void Expect(Token expectedToken) {
|
---|
403 | Token actualToken = tokenizer.Next();
|
---|
404 | if (actualToken != expectedToken) {
|
---|
405 | Error("Expected: " + expectedToken, actualToken.stringValue, tokenizer.CurrentLineNumber);
|
---|
406 | }
|
---|
407 | }
|
---|
408 |
|
---|
409 | private void Error(string message, string token, int lineNumber) {
|
---|
410 | throw new DataFormatException("Error while parsing.\n" + message, token, lineNumber);
|
---|
411 | }
|
---|
412 | #endregion
|
---|
413 | }
|
---|
414 | }
|
---|