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 | using HeuristicLab.Core;
|
---|
22 | using System.Windows.Forms;
|
---|
23 | namespace HeuristicLab.CEDMA.Server {
|
---|
24 | partial class ProblemView {
|
---|
25 | /// <summary>
|
---|
26 | /// Required designer variable.
|
---|
27 | /// </summary>
|
---|
28 | private System.ComponentModel.IContainer components = null;
|
---|
29 |
|
---|
30 | /// <summary>
|
---|
31 | /// Clean up any resources being used.
|
---|
32 | /// </summary>
|
---|
33 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
34 | protected override void Dispose(bool disposing) {
|
---|
35 | if(disposing && (components != null)) {
|
---|
36 | components.Dispose();
|
---|
37 | }
|
---|
38 | base.Dispose(disposing);
|
---|
39 | }
|
---|
40 |
|
---|
41 | #region Component Designer generated code
|
---|
42 |
|
---|
43 | /// <summary>
|
---|
44 | /// Required method for Designer support - do not modify
|
---|
45 | /// the contents of this method with the code editor.
|
---|
46 | /// </summary>
|
---|
47 | private void InitializeComponent() {
|
---|
48 | this.importButton = new System.Windows.Forms.Button();
|
---|
49 | this.trainingSamplesStartTextBox = new System.Windows.Forms.TextBox();
|
---|
50 | this.trainingLabel = new System.Windows.Forms.Label();
|
---|
51 | this.trainingSamplesEndTextBox = new System.Windows.Forms.TextBox();
|
---|
52 | this.validationSamplesEndTextBox = new System.Windows.Forms.TextBox();
|
---|
53 | this.validationSamplesStartTextBox = new System.Windows.Forms.TextBox();
|
---|
54 | this.validationLabel = new System.Windows.Forms.Label();
|
---|
55 | this.testSamplesEndTextBox = new System.Windows.Forms.TextBox();
|
---|
56 | this.testSamplesStartTextBox = new System.Windows.Forms.TextBox();
|
---|
57 | this.testLabel = new System.Windows.Forms.Label();
|
---|
58 | this.autoregressiveCheckBox = new System.Windows.Forms.CheckBox();
|
---|
59 | this.partitioningGroupBox = new System.Windows.Forms.GroupBox();
|
---|
60 | this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
|
---|
61 | this.classificationRadioButton = new System.Windows.Forms.RadioButton();
|
---|
62 | this.regressionRadioButton = new System.Windows.Forms.RadioButton();
|
---|
63 | this.timeSeriesRadioButton = new System.Windows.Forms.RadioButton();
|
---|
64 | this.minTimeOffsetLabel = new System.Windows.Forms.Label();
|
---|
65 | this.minTimeOffsetTextBox = new System.Windows.Forms.TextBox();
|
---|
66 | this.learningTaskGroupBox = new System.Windows.Forms.GroupBox();
|
---|
67 | this.autoregressiveLabel = new System.Windows.Forms.Label();
|
---|
68 | this.maxTimeOffsetLabel = new System.Windows.Forms.Label();
|
---|
69 | this.maxTimeOffsetTextBox = new System.Windows.Forms.TextBox();
|
---|
70 | this.datasetView1 = new HeuristicLab.DataAnalysis.DatasetView();
|
---|
71 | this.partitioningGroupBox.SuspendLayout();
|
---|
72 | this.learningTaskGroupBox.SuspendLayout();
|
---|
73 | this.SuspendLayout();
|
---|
74 | //
|
---|
75 | // importButton
|
---|
76 | //
|
---|
77 | this.importButton.Location = new System.Drawing.Point(3, 3);
|
---|
78 | this.importButton.Name = "importButton";
|
---|
79 | this.importButton.Size = new System.Drawing.Size(75, 23);
|
---|
80 | this.importButton.TabIndex = 0;
|
---|
81 | this.importButton.Text = "Import";
|
---|
82 | this.importButton.UseVisualStyleBackColor = true;
|
---|
83 | this.importButton.Click += new System.EventHandler(this.importButton_Click);
|
---|
84 | //
|
---|
85 | // trainingSamplesStartTextBox
|
---|
86 | //
|
---|
87 | this.trainingSamplesStartTextBox.Location = new System.Drawing.Point(119, 17);
|
---|
88 | this.trainingSamplesStartTextBox.Name = "trainingSamplesStartTextBox";
|
---|
89 | this.trainingSamplesStartTextBox.Size = new System.Drawing.Size(96, 20);
|
---|
90 | this.trainingSamplesStartTextBox.TabIndex = 4;
|
---|
91 | this.trainingSamplesStartTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
|
---|
92 | this.trainingSamplesStartTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
|
---|
93 | //
|
---|
94 | // trainingLabel
|
---|
95 | //
|
---|
96 | this.trainingLabel.AutoSize = true;
|
---|
97 | this.trainingLabel.Location = new System.Drawing.Point(13, 20);
|
---|
98 | this.trainingLabel.Name = "trainingLabel";
|
---|
99 | this.trainingLabel.Size = new System.Drawing.Size(89, 13);
|
---|
100 | this.trainingLabel.TabIndex = 3;
|
---|
101 | this.trainingLabel.Text = "Training samples:";
|
---|
102 | //
|
---|
103 | // trainingSamplesEndTextBox
|
---|
104 | //
|
---|
105 | this.trainingSamplesEndTextBox.Location = new System.Drawing.Point(221, 17);
|
---|
106 | this.trainingSamplesEndTextBox.Name = "trainingSamplesEndTextBox";
|
---|
107 | this.trainingSamplesEndTextBox.Size = new System.Drawing.Size(96, 20);
|
---|
108 | this.trainingSamplesEndTextBox.TabIndex = 10;
|
---|
109 | this.trainingSamplesEndTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
|
---|
110 | this.trainingSamplesEndTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
|
---|
111 | //
|
---|
112 | // validationSamplesEndTextBox
|
---|
113 | //
|
---|
114 | this.validationSamplesEndTextBox.Location = new System.Drawing.Point(221, 43);
|
---|
115 | this.validationSamplesEndTextBox.Name = "validationSamplesEndTextBox";
|
---|
116 | this.validationSamplesEndTextBox.Size = new System.Drawing.Size(96, 20);
|
---|
117 | this.validationSamplesEndTextBox.TabIndex = 13;
|
---|
118 | this.validationSamplesEndTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
|
---|
119 | this.validationSamplesEndTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
|
---|
120 | //
|
---|
121 | // validationSamplesStartTextBox
|
---|
122 | //
|
---|
123 | this.validationSamplesStartTextBox.Location = new System.Drawing.Point(119, 43);
|
---|
124 | this.validationSamplesStartTextBox.Name = "validationSamplesStartTextBox";
|
---|
125 | this.validationSamplesStartTextBox.Size = new System.Drawing.Size(96, 20);
|
---|
126 | this.validationSamplesStartTextBox.TabIndex = 12;
|
---|
127 | this.validationSamplesStartTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
|
---|
128 | this.validationSamplesStartTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
|
---|
129 | //
|
---|
130 | // validationLabel
|
---|
131 | //
|
---|
132 | this.validationLabel.AutoSize = true;
|
---|
133 | this.validationLabel.Location = new System.Drawing.Point(5, 46);
|
---|
134 | this.validationLabel.Name = "validationLabel";
|
---|
135 | this.validationLabel.Size = new System.Drawing.Size(97, 13);
|
---|
136 | this.validationLabel.TabIndex = 11;
|
---|
137 | this.validationLabel.Text = "Validation samples:";
|
---|
138 | //
|
---|
139 | // testSamplesEndTextBox
|
---|
140 | //
|
---|
141 | this.testSamplesEndTextBox.Location = new System.Drawing.Point(221, 68);
|
---|
142 | this.testSamplesEndTextBox.Name = "testSamplesEndTextBox";
|
---|
143 | this.testSamplesEndTextBox.Size = new System.Drawing.Size(96, 20);
|
---|
144 | this.testSamplesEndTextBox.TabIndex = 16;
|
---|
145 | this.testSamplesEndTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
|
---|
146 | this.testSamplesEndTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
|
---|
147 | //
|
---|
148 | // testSamplesStartTextBox
|
---|
149 | //
|
---|
150 | this.testSamplesStartTextBox.Location = new System.Drawing.Point(119, 68);
|
---|
151 | this.testSamplesStartTextBox.Name = "testSamplesStartTextBox";
|
---|
152 | this.testSamplesStartTextBox.Size = new System.Drawing.Size(96, 20);
|
---|
153 | this.testSamplesStartTextBox.TabIndex = 15;
|
---|
154 | this.testSamplesStartTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
|
---|
155 | this.testSamplesStartTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
|
---|
156 | //
|
---|
157 | // testLabel
|
---|
158 | //
|
---|
159 | this.testLabel.AutoSize = true;
|
---|
160 | this.testLabel.Location = new System.Drawing.Point(30, 71);
|
---|
161 | this.testLabel.Name = "testLabel";
|
---|
162 | this.testLabel.Size = new System.Drawing.Size(72, 13);
|
---|
163 | this.testLabel.TabIndex = 14;
|
---|
164 | this.testLabel.Text = "Test samples:";
|
---|
165 | //
|
---|
166 | // autoregressiveCheckBox
|
---|
167 | //
|
---|
168 | this.autoregressiveCheckBox.Anchor = System.Windows.Forms.AnchorStyles.Top;
|
---|
169 | this.autoregressiveCheckBox.AutoSize = true;
|
---|
170 | this.autoregressiveCheckBox.Enabled = false;
|
---|
171 | this.autoregressiveCheckBox.Location = new System.Drawing.Point(131, 83);
|
---|
172 | this.autoregressiveCheckBox.Name = "autoregressiveCheckBox";
|
---|
173 | this.autoregressiveCheckBox.Size = new System.Drawing.Size(15, 14);
|
---|
174 | this.autoregressiveCheckBox.TabIndex = 22;
|
---|
175 | this.autoregressiveCheckBox.UseVisualStyleBackColor = true;
|
---|
176 | this.autoregressiveCheckBox.CheckedChanged += new System.EventHandler(this.autoregressiveCheckBox_CheckedChanged);
|
---|
177 | //
|
---|
178 | // partitioningGroupBox
|
---|
179 | //
|
---|
180 | this.partitioningGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
181 | this.partitioningGroupBox.Controls.Add(this.validationSamplesEndTextBox);
|
---|
182 | this.partitioningGroupBox.Controls.Add(this.trainingLabel);
|
---|
183 | this.partitioningGroupBox.Controls.Add(this.trainingSamplesStartTextBox);
|
---|
184 | this.partitioningGroupBox.Controls.Add(this.trainingSamplesEndTextBox);
|
---|
185 | this.partitioningGroupBox.Controls.Add(this.validationLabel);
|
---|
186 | this.partitioningGroupBox.Controls.Add(this.testSamplesEndTextBox);
|
---|
187 | this.partitioningGroupBox.Controls.Add(this.validationSamplesStartTextBox);
|
---|
188 | this.partitioningGroupBox.Controls.Add(this.testSamplesStartTextBox);
|
---|
189 | this.partitioningGroupBox.Controls.Add(this.testLabel);
|
---|
190 | this.partitioningGroupBox.Location = new System.Drawing.Point(3, 452);
|
---|
191 | this.partitioningGroupBox.Name = "partitioningGroupBox";
|
---|
192 | this.partitioningGroupBox.Size = new System.Drawing.Size(326, 100);
|
---|
193 | this.partitioningGroupBox.TabIndex = 25;
|
---|
194 | this.partitioningGroupBox.TabStop = false;
|
---|
195 | this.partitioningGroupBox.Text = "Data set partitions:";
|
---|
196 | //
|
---|
197 | // openFileDialog
|
---|
198 | //
|
---|
199 | this.openFileDialog.DefaultExt = "txt";
|
---|
200 | this.openFileDialog.FileName = "txt";
|
---|
201 | this.openFileDialog.Filter = "Text files|*.txt|All files|*.*";
|
---|
202 | this.openFileDialog.Title = "Import data set from file";
|
---|
203 | //
|
---|
204 | // classificationRadioButton
|
---|
205 | //
|
---|
206 | this.classificationRadioButton.AutoSize = true;
|
---|
207 | this.classificationRadioButton.Checked = true;
|
---|
208 | this.classificationRadioButton.Location = new System.Drawing.Point(6, 16);
|
---|
209 | this.classificationRadioButton.Name = "classificationRadioButton";
|
---|
210 | this.classificationRadioButton.Size = new System.Drawing.Size(86, 17);
|
---|
211 | this.classificationRadioButton.TabIndex = 28;
|
---|
212 | this.classificationRadioButton.TabStop = true;
|
---|
213 | this.classificationRadioButton.Text = "Classification";
|
---|
214 | this.classificationRadioButton.UseVisualStyleBackColor = true;
|
---|
215 | this.classificationRadioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
|
---|
216 | //
|
---|
217 | // regressionRadioButton
|
---|
218 | //
|
---|
219 | this.regressionRadioButton.AutoSize = true;
|
---|
220 | this.regressionRadioButton.Location = new System.Drawing.Point(6, 39);
|
---|
221 | this.regressionRadioButton.Name = "regressionRadioButton";
|
---|
222 | this.regressionRadioButton.Size = new System.Drawing.Size(78, 17);
|
---|
223 | this.regressionRadioButton.TabIndex = 29;
|
---|
224 | this.regressionRadioButton.Text = "Regression";
|
---|
225 | this.regressionRadioButton.UseVisualStyleBackColor = true;
|
---|
226 | this.regressionRadioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
|
---|
227 | //
|
---|
228 | // timeSeriesRadioButton
|
---|
229 | //
|
---|
230 | this.timeSeriesRadioButton.AutoSize = true;
|
---|
231 | this.timeSeriesRadioButton.Location = new System.Drawing.Point(6, 62);
|
---|
232 | this.timeSeriesRadioButton.Name = "timeSeriesRadioButton";
|
---|
233 | this.timeSeriesRadioButton.Size = new System.Drawing.Size(119, 17);
|
---|
234 | this.timeSeriesRadioButton.TabIndex = 30;
|
---|
235 | this.timeSeriesRadioButton.Text = "Time series forecast";
|
---|
236 | this.timeSeriesRadioButton.UseVisualStyleBackColor = true;
|
---|
237 | this.timeSeriesRadioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
|
---|
238 | //
|
---|
239 | // minTimeOffsetLabel
|
---|
240 | //
|
---|
241 | this.minTimeOffsetLabel.AutoSize = true;
|
---|
242 | this.minTimeOffsetLabel.Enabled = false;
|
---|
243 | this.minTimeOffsetLabel.Location = new System.Drawing.Point(38, 106);
|
---|
244 | this.minTimeOffsetLabel.Name = "minTimeOffsetLabel";
|
---|
245 | this.minTimeOffsetLabel.Size = new System.Drawing.Size(87, 13);
|
---|
246 | this.minTimeOffsetLabel.TabIndex = 31;
|
---|
247 | this.minTimeOffsetLabel.Text = "Min. Time Offset:";
|
---|
248 | //
|
---|
249 | // minTimeOffsetTextBox
|
---|
250 | //
|
---|
251 | this.minTimeOffsetTextBox.Enabled = false;
|
---|
252 | this.minTimeOffsetTextBox.Location = new System.Drawing.Point(131, 103);
|
---|
253 | this.minTimeOffsetTextBox.Name = "minTimeOffsetTextBox";
|
---|
254 | this.minTimeOffsetTextBox.Size = new System.Drawing.Size(96, 20);
|
---|
255 | this.minTimeOffsetTextBox.TabIndex = 32;
|
---|
256 | this.minTimeOffsetTextBox.Validated += new System.EventHandler(this.timeOffsetTextBox_Validated);
|
---|
257 | this.minTimeOffsetTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.timeOffsetTextBox_Validating);
|
---|
258 | //
|
---|
259 | // learningTaskGroupBox
|
---|
260 | //
|
---|
261 | this.learningTaskGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
262 | this.learningTaskGroupBox.Controls.Add(this.autoregressiveLabel);
|
---|
263 | this.learningTaskGroupBox.Controls.Add(this.classificationRadioButton);
|
---|
264 | this.learningTaskGroupBox.Controls.Add(this.minTimeOffsetLabel);
|
---|
265 | this.learningTaskGroupBox.Controls.Add(this.minTimeOffsetTextBox);
|
---|
266 | this.learningTaskGroupBox.Controls.Add(this.maxTimeOffsetLabel);
|
---|
267 | this.learningTaskGroupBox.Controls.Add(this.regressionRadioButton);
|
---|
268 | this.learningTaskGroupBox.Controls.Add(this.maxTimeOffsetTextBox);
|
---|
269 | this.learningTaskGroupBox.Controls.Add(this.timeSeriesRadioButton);
|
---|
270 | this.learningTaskGroupBox.Controls.Add(this.autoregressiveCheckBox);
|
---|
271 | this.learningTaskGroupBox.Location = new System.Drawing.Point(335, 452);
|
---|
272 | this.learningTaskGroupBox.Name = "learningTaskGroupBox";
|
---|
273 | this.learningTaskGroupBox.Size = new System.Drawing.Size(326, 163);
|
---|
274 | this.learningTaskGroupBox.TabIndex = 35;
|
---|
275 | this.learningTaskGroupBox.TabStop = false;
|
---|
276 | this.learningTaskGroupBox.Text = "Learning task";
|
---|
277 | //
|
---|
278 | // autoregressiveLabel
|
---|
279 | //
|
---|
280 | this.autoregressiveLabel.AutoSize = true;
|
---|
281 | this.autoregressiveLabel.Enabled = false;
|
---|
282 | this.autoregressiveLabel.Location = new System.Drawing.Point(45, 83);
|
---|
283 | this.autoregressiveLabel.Name = "autoregressiveLabel";
|
---|
284 | this.autoregressiveLabel.Size = new System.Drawing.Size(80, 13);
|
---|
285 | this.autoregressiveLabel.TabIndex = 35;
|
---|
286 | this.autoregressiveLabel.Text = "Autoregressive:";
|
---|
287 | //
|
---|
288 | // maxTimeOffsetLabel
|
---|
289 | //
|
---|
290 | this.maxTimeOffsetLabel.AutoSize = true;
|
---|
291 | this.maxTimeOffsetLabel.Enabled = false;
|
---|
292 | this.maxTimeOffsetLabel.Location = new System.Drawing.Point(35, 132);
|
---|
293 | this.maxTimeOffsetLabel.Name = "maxTimeOffsetLabel";
|
---|
294 | this.maxTimeOffsetLabel.Size = new System.Drawing.Size(90, 13);
|
---|
295 | this.maxTimeOffsetLabel.TabIndex = 33;
|
---|
296 | this.maxTimeOffsetLabel.Text = "Max. Time Offset:";
|
---|
297 | //
|
---|
298 | // maxTimeOffsetTextBox
|
---|
299 | //
|
---|
300 | this.maxTimeOffsetTextBox.Enabled = false;
|
---|
301 | this.maxTimeOffsetTextBox.Location = new System.Drawing.Point(131, 129);
|
---|
302 | this.maxTimeOffsetTextBox.Name = "maxTimeOffsetTextBox";
|
---|
303 | this.maxTimeOffsetTextBox.Size = new System.Drawing.Size(96, 20);
|
---|
304 | this.maxTimeOffsetTextBox.TabIndex = 34;
|
---|
305 | this.maxTimeOffsetTextBox.Validated += new System.EventHandler(this.timeOffsetTextBox_Validated);
|
---|
306 | this.maxTimeOffsetTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.timeOffsetTextBox_Validating);
|
---|
307 | //
|
---|
308 | // datasetView1
|
---|
309 | //
|
---|
310 | this.datasetView1.Location = new System.Drawing.Point(3, 32);
|
---|
311 | this.datasetView1.Name = "datasetView1";
|
---|
312 | this.datasetView1.Size = new System.Drawing.Size(770, 414);
|
---|
313 | this.datasetView1.TabIndex = 36;
|
---|
314 | //
|
---|
315 | // ProblemView
|
---|
316 | //
|
---|
317 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
318 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
319 | this.Controls.Add(this.datasetView1);
|
---|
320 | this.Controls.Add(this.learningTaskGroupBox);
|
---|
321 | this.Controls.Add(this.partitioningGroupBox);
|
---|
322 | this.Controls.Add(this.importButton);
|
---|
323 | this.Name = "ProblemView";
|
---|
324 | this.Size = new System.Drawing.Size(776, 615);
|
---|
325 | this.partitioningGroupBox.ResumeLayout(false);
|
---|
326 | this.partitioningGroupBox.PerformLayout();
|
---|
327 | this.learningTaskGroupBox.ResumeLayout(false);
|
---|
328 | this.learningTaskGroupBox.PerformLayout();
|
---|
329 | this.ResumeLayout(false);
|
---|
330 |
|
---|
331 | }
|
---|
332 |
|
---|
333 | #endregion
|
---|
334 |
|
---|
335 | private System.Windows.Forms.Button importButton;
|
---|
336 | private System.Windows.Forms.TextBox trainingSamplesStartTextBox;
|
---|
337 | private System.Windows.Forms.Label trainingLabel;
|
---|
338 | private System.Windows.Forms.TextBox trainingSamplesEndTextBox;
|
---|
339 | private System.Windows.Forms.TextBox validationSamplesEndTextBox;
|
---|
340 | private System.Windows.Forms.TextBox validationSamplesStartTextBox;
|
---|
341 | private System.Windows.Forms.Label validationLabel;
|
---|
342 | private System.Windows.Forms.TextBox testSamplesEndTextBox;
|
---|
343 | private System.Windows.Forms.TextBox testSamplesStartTextBox;
|
---|
344 | private System.Windows.Forms.Label testLabel;
|
---|
345 | private System.Windows.Forms.CheckBox autoregressiveCheckBox;
|
---|
346 | private System.Windows.Forms.GroupBox partitioningGroupBox;
|
---|
347 | private System.Windows.Forms.OpenFileDialog openFileDialog;
|
---|
348 | private System.Windows.Forms.RadioButton classificationRadioButton;
|
---|
349 | private System.Windows.Forms.RadioButton regressionRadioButton;
|
---|
350 | private System.Windows.Forms.RadioButton timeSeriesRadioButton;
|
---|
351 | private System.Windows.Forms.Label minTimeOffsetLabel;
|
---|
352 | private System.Windows.Forms.TextBox minTimeOffsetTextBox;
|
---|
353 | private System.Windows.Forms.GroupBox learningTaskGroupBox;
|
---|
354 | private System.Windows.Forms.Label maxTimeOffsetLabel;
|
---|
355 | private System.Windows.Forms.TextBox maxTimeOffsetTextBox;
|
---|
356 | private System.Windows.Forms.Label autoregressiveLabel;
|
---|
357 | private HeuristicLab.DataAnalysis.DatasetView datasetView1;
|
---|
358 | }
|
---|
359 | }
|
---|