Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem/3.3/Views/PerformanceModelingView.Designer.cs @ 13794

Last change on this file since 13794 was 13794, checked in by abeham, 8 years ago

#2457: worked on recommendation algorithms (x-validation)

File size: 17.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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
22namespace HeuristicLab.OptimizationExpertSystem {
23  partial class PerformanceModelingView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.recommenderLabel = new System.Windows.Forms.Label();
48      this.recommenderComboBox = new System.Windows.Forms.ComboBox();
49      this.recommendStartButton = new System.Windows.Forms.Button();
50      this.tabControl = new System.Windows.Forms.TabControl();
51      this.characteristicsTabPage = new System.Windows.Forms.TabPage();
52      this.characteristicsViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
53      this.refreshCharacteristicsButton = new System.Windows.Forms.Button();
54      this.parametersTabPage = new System.Windows.Forms.TabPage();
55      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
56      this.crossvalidationTabPage = new System.Windows.Forms.TabPage();
57      this.kendallsTauLabel = new System.Windows.Forms.Label();
58      this.absoluteErrorLabel = new System.Windows.Forms.Label();
59      this.kendallsTauView = new HeuristicLab.Data.Views.StringConvertibleValueView();
60      this.absoluteErrorView = new HeuristicLab.Data.Views.StringConvertibleValueView();
61      this.confusionMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
62      this.xValidateButton = new System.Windows.Forms.Button();
63      this.minTargetView = new HeuristicLab.Data.Views.StringConvertibleValueView();
64      this.minimumTargetLabel = new System.Windows.Forms.Label();
65      this.actualLabel = new System.Windows.Forms.Label();
66      this.predictedLabel = new System.Windows.Forms.Label();
67      this.tabControl.SuspendLayout();
68      this.characteristicsTabPage.SuspendLayout();
69      this.parametersTabPage.SuspendLayout();
70      this.crossvalidationTabPage.SuspendLayout();
71      this.SuspendLayout();
72      //
73      // recommenderLabel
74      //
75      this.recommenderLabel.AutoSize = true;
76      this.recommenderLabel.Location = new System.Drawing.Point(5, 6);
77      this.recommenderLabel.Name = "recommenderLabel";
78      this.recommenderLabel.Size = new System.Drawing.Size(79, 13);
79      this.recommenderLabel.TabIndex = 12;
80      this.recommenderLabel.Text = "Recommender:";
81      //
82      // recommenderComboBox
83      //
84      this.recommenderComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
85      this.recommenderComboBox.FormattingEnabled = true;
86      this.recommenderComboBox.Location = new System.Drawing.Point(90, 3);
87      this.recommenderComboBox.Name = "recommenderComboBox";
88      this.recommenderComboBox.Size = new System.Drawing.Size(206, 21);
89      this.recommenderComboBox.TabIndex = 11;
90      this.recommenderComboBox.SelectedIndexChanged += new System.EventHandler(this.RecommenderComboBoxOnSelectedIndexChanged);
91      //
92      // recommendStartButton
93      //
94      this.recommendStartButton.Location = new System.Drawing.Point(442, 1);
95      this.recommendStartButton.Name = "recommendStartButton";
96      this.recommendStartButton.Size = new System.Drawing.Size(26, 23);
97      this.recommendStartButton.TabIndex = 13;
98      this.recommendStartButton.Text = "Start";
99      this.recommendStartButton.UseVisualStyleBackColor = true;
100      this.recommendStartButton.Click += new System.EventHandler(this.RecommendStartButtonOnClick);
101      //
102      // tabControl
103      //
104      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
105            | System.Windows.Forms.AnchorStyles.Left)
106            | System.Windows.Forms.AnchorStyles.Right)));
107      this.tabControl.Controls.Add(this.characteristicsTabPage);
108      this.tabControl.Controls.Add(this.parametersTabPage);
109      this.tabControl.Controls.Add(this.crossvalidationTabPage);
110      this.tabControl.Location = new System.Drawing.Point(0, 30);
111      this.tabControl.Name = "tabControl";
112      this.tabControl.SelectedIndex = 0;
113      this.tabControl.Size = new System.Drawing.Size(817, 509);
114      this.tabControl.TabIndex = 14;
115      //
116      // characteristicsTabPage
117      //
118      this.characteristicsTabPage.Controls.Add(this.characteristicsViewHost);
119      this.characteristicsTabPage.Controls.Add(this.refreshCharacteristicsButton);
120      this.characteristicsTabPage.Location = new System.Drawing.Point(4, 22);
121      this.characteristicsTabPage.Name = "characteristicsTabPage";
122      this.characteristicsTabPage.Padding = new System.Windows.Forms.Padding(3);
123      this.characteristicsTabPage.Size = new System.Drawing.Size(692, 324);
124      this.characteristicsTabPage.TabIndex = 2;
125      this.characteristicsTabPage.Text = "Characteristics";
126      this.characteristicsTabPage.UseVisualStyleBackColor = true;
127      //
128      // characteristicsViewHost
129      //
130      this.characteristicsViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
131            | System.Windows.Forms.AnchorStyles.Left)
132            | System.Windows.Forms.AnchorStyles.Right)));
133      this.characteristicsViewHost.Caption = "View";
134      this.characteristicsViewHost.Content = null;
135      this.characteristicsViewHost.Enabled = false;
136      this.characteristicsViewHost.Location = new System.Drawing.Point(6, 35);
137      this.characteristicsViewHost.Name = "characteristicsViewHost";
138      this.characteristicsViewHost.ReadOnly = false;
139      this.characteristicsViewHost.Size = new System.Drawing.Size(680, 283);
140      this.characteristicsViewHost.TabIndex = 1;
141      this.characteristicsViewHost.ViewsLabelVisible = true;
142      this.characteristicsViewHost.ViewType = null;
143      //
144      // refreshCharacteristicsButton
145      //
146      this.refreshCharacteristicsButton.Location = new System.Drawing.Point(6, 6);
147      this.refreshCharacteristicsButton.Name = "refreshCharacteristicsButton";
148      this.refreshCharacteristicsButton.Size = new System.Drawing.Size(26, 23);
149      this.refreshCharacteristicsButton.TabIndex = 0;
150      this.refreshCharacteristicsButton.Text = "Refresh";
151      this.refreshCharacteristicsButton.UseVisualStyleBackColor = true;
152      this.refreshCharacteristicsButton.Click += new System.EventHandler(this.RefreshCharacteristicsButtonOnClick);
153      //
154      // parametersTabPage
155      //
156      this.parametersTabPage.Controls.Add(this.parameterCollectionView);
157      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
158      this.parametersTabPage.Name = "parametersTabPage";
159      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
160      this.parametersTabPage.Size = new System.Drawing.Size(692, 324);
161      this.parametersTabPage.TabIndex = 0;
162      this.parametersTabPage.Text = "Parameters";
163      this.parametersTabPage.UseVisualStyleBackColor = true;
164      //
165      // parameterCollectionView
166      //
167      this.parameterCollectionView.AllowEditingOfHiddenParameters = true;
168      this.parameterCollectionView.Caption = "ParameterCollection View";
169      this.parameterCollectionView.Content = null;
170      this.parameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
171      this.parameterCollectionView.Location = new System.Drawing.Point(3, 3);
172      this.parameterCollectionView.Name = "parameterCollectionView";
173      this.parameterCollectionView.ReadOnly = false;
174      this.parameterCollectionView.ShowDetails = true;
175      this.parameterCollectionView.Size = new System.Drawing.Size(686, 318);
176      this.parameterCollectionView.TabIndex = 0;
177      //
178      // crossvalidationTabPage
179      //
180      this.crossvalidationTabPage.Controls.Add(this.kendallsTauLabel);
181      this.crossvalidationTabPage.Controls.Add(this.predictedLabel);
182      this.crossvalidationTabPage.Controls.Add(this.actualLabel);
183      this.crossvalidationTabPage.Controls.Add(this.absoluteErrorLabel);
184      this.crossvalidationTabPage.Controls.Add(this.kendallsTauView);
185      this.crossvalidationTabPage.Controls.Add(this.absoluteErrorView);
186      this.crossvalidationTabPage.Controls.Add(this.confusionMatrixView);
187      this.crossvalidationTabPage.Controls.Add(this.xValidateButton);
188      this.crossvalidationTabPage.Location = new System.Drawing.Point(4, 22);
189      this.crossvalidationTabPage.Name = "crossvalidationTabPage";
190      this.crossvalidationTabPage.Padding = new System.Windows.Forms.Padding(3);
191      this.crossvalidationTabPage.Size = new System.Drawing.Size(809, 483);
192      this.crossvalidationTabPage.TabIndex = 1;
193      this.crossvalidationTabPage.Text = "Crossvalidation";
194      this.crossvalidationTabPage.UseVisualStyleBackColor = true;
195      //
196      // kendallsTauLabel
197      //
198      this.kendallsTauLabel.AutoSize = true;
199      this.kendallsTauLabel.Location = new System.Drawing.Point(536, 110);
200      this.kendallsTauLabel.Margin = new System.Windows.Forms.Padding(3);
201      this.kendallsTauLabel.Name = "kendallsTauLabel";
202      this.kendallsTauLabel.Size = new System.Drawing.Size(104, 13);
203      this.kendallsTauLabel.TabIndex = 3;
204      this.kendallsTauLabel.Text = "Mean Kendall\'s Tau:";
205      //
206      // absoluteErrorLabel
207      //
208      this.absoluteErrorLabel.AutoSize = true;
209      this.absoluteErrorLabel.Location = new System.Drawing.Point(536, 52);
210      this.absoluteErrorLabel.Margin = new System.Windows.Forms.Padding(3);
211      this.absoluteErrorLabel.Name = "absoluteErrorLabel";
212      this.absoluteErrorLabel.Size = new System.Drawing.Size(106, 13);
213      this.absoluteErrorLabel.TabIndex = 3;
214      this.absoluteErrorLabel.Text = "Mean Absolute Error:";
215      //
216      // kendallsTauView
217      //
218      this.kendallsTauView.Caption = "StringConvertibleValue View";
219      this.kendallsTauView.Content = null;
220      this.kendallsTauView.LabelVisible = false;
221      this.kendallsTauView.Location = new System.Drawing.Point(520, 129);
222      this.kendallsTauView.Name = "kendallsTauView";
223      this.kendallsTauView.ReadOnly = true;
224      this.kendallsTauView.Size = new System.Drawing.Size(194, 21);
225      this.kendallsTauView.TabIndex = 2;
226      //
227      // absoluteErrorView
228      //
229      this.absoluteErrorView.Caption = "StringConvertibleValue View";
230      this.absoluteErrorView.Content = null;
231      this.absoluteErrorView.LabelVisible = false;
232      this.absoluteErrorView.Location = new System.Drawing.Point(520, 71);
233      this.absoluteErrorView.Name = "absoluteErrorView";
234      this.absoluteErrorView.ReadOnly = true;
235      this.absoluteErrorView.Size = new System.Drawing.Size(194, 21);
236      this.absoluteErrorView.TabIndex = 2;
237      //
238      // confusionMatrixView
239      //
240      this.confusionMatrixView.Caption = "StringConvertibleMatrix View";
241      this.confusionMatrixView.Content = null;
242      this.confusionMatrixView.Location = new System.Drawing.Point(37, 71);
243      this.confusionMatrixView.Name = "confusionMatrixView";
244      this.confusionMatrixView.ReadOnly = true;
245      this.confusionMatrixView.ShowRowsAndColumnsTextBox = false;
246      this.confusionMatrixView.ShowStatisticalInformation = false;
247      this.confusionMatrixView.Size = new System.Drawing.Size(477, 363);
248      this.confusionMatrixView.TabIndex = 1;
249      //
250      // xValidateButton
251      //
252      this.xValidateButton.Location = new System.Drawing.Point(7, 7);
253      this.xValidateButton.Name = "xValidateButton";
254      this.xValidateButton.Size = new System.Drawing.Size(163, 23);
255      this.xValidateButton.TabIndex = 0;
256      this.xValidateButton.Text = "X-Validate Leave One Out";
257      this.xValidateButton.UseVisualStyleBackColor = true;
258      this.xValidateButton.Click += new System.EventHandler(this.xValidateButton_Click);
259      //
260      // minTargetView
261      //
262      this.minTargetView.Caption = "StringConvertibleValue View";
263      this.minTargetView.Content = null;
264      this.minTargetView.LabelVisible = false;
265      this.minTargetView.Location = new System.Drawing.Point(350, 3);
266      this.minTargetView.Name = "minTargetView";
267      this.minTargetView.ReadOnly = false;
268      this.minTargetView.Size = new System.Drawing.Size(86, 21);
269      this.minTargetView.TabIndex = 18;
270      //
271      // minimumTargetLabel
272      //
273      this.minimumTargetLabel.AutoSize = true;
274      this.minimumTargetLabel.Location = new System.Drawing.Point(311, 6);
275      this.minimumTargetLabel.Name = "minimumTargetLabel";
276      this.minimumTargetLabel.Size = new System.Drawing.Size(41, 13);
277      this.minimumTargetLabel.TabIndex = 17;
278      this.minimumTargetLabel.Text = "Target:";
279      //
280      // actualLabel
281      //
282      this.actualLabel.AutoSize = true;
283      this.actualLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
284      this.actualLabel.Location = new System.Drawing.Point(16, 210);
285      this.actualLabel.Margin = new System.Windows.Forms.Padding(3);
286      this.actualLabel.Name = "actualLabel";
287      this.actualLabel.Size = new System.Drawing.Size(15, 78);
288      this.actualLabel.TabIndex = 3;
289      this.actualLabel.Text = "A\r\nC\r\nT\r\nU\r\nA\r\nL";
290      //
291      // predictedLabel
292      //
293      this.predictedLabel.AutoSize = true;
294      this.predictedLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
295      this.predictedLabel.Location = new System.Drawing.Point(241, 52);
296      this.predictedLabel.Margin = new System.Windows.Forms.Padding(3);
297      this.predictedLabel.Name = "predictedLabel";
298      this.predictedLabel.Size = new System.Drawing.Size(69, 13);
299      this.predictedLabel.TabIndex = 3;
300      this.predictedLabel.Text = "PREDICTED";
301      //
302      // PerformanceModelingView
303      //
304      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
305      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
306      this.Controls.Add(this.minimumTargetLabel);
307      this.Controls.Add(this.minTargetView);
308      this.Controls.Add(this.tabControl);
309      this.Controls.Add(this.recommenderLabel);
310      this.Controls.Add(this.recommenderComboBox);
311      this.Controls.Add(this.recommendStartButton);
312      this.Name = "PerformanceModelingView";
313      this.Size = new System.Drawing.Size(817, 539);
314      this.tabControl.ResumeLayout(false);
315      this.characteristicsTabPage.ResumeLayout(false);
316      this.parametersTabPage.ResumeLayout(false);
317      this.crossvalidationTabPage.ResumeLayout(false);
318      this.crossvalidationTabPage.PerformLayout();
319      this.ResumeLayout(false);
320      this.PerformLayout();
321
322    }
323
324    #endregion
325
326    private System.Windows.Forms.Label recommenderLabel;
327    private System.Windows.Forms.ComboBox recommenderComboBox;
328    private System.Windows.Forms.Button recommendStartButton;
329    private System.Windows.Forms.TabControl tabControl;
330    private System.Windows.Forms.TabPage parametersTabPage;
331    private System.Windows.Forms.TabPage crossvalidationTabPage;
332    private Core.Views.ParameterCollectionView parameterCollectionView;
333    private System.Windows.Forms.TabPage characteristicsTabPage;
334    private System.Windows.Forms.Button refreshCharacteristicsButton;
335    private MainForm.WindowsForms.ViewHost characteristicsViewHost;
336    private System.Windows.Forms.Button xValidateButton;
337    private Data.Views.StringConvertibleValueView minTargetView;
338    private System.Windows.Forms.Label minimumTargetLabel;
339    private System.Windows.Forms.Label kendallsTauLabel;
340    private System.Windows.Forms.Label absoluteErrorLabel;
341    private Data.Views.StringConvertibleValueView kendallsTauView;
342    private Data.Views.StringConvertibleValueView absoluteErrorView;
343    private Data.Views.StringConvertibleMatrixView confusionMatrixView;
344    private System.Windows.Forms.Label predictedLabel;
345    private System.Windows.Forms.Label actualLabel;
346  }
347}
Note: See TracBrowser for help on using the repository browser.