Free cookie consent management tool by TermsFeed Policy Generator

source: branches/1614_GeneralizedQAP/HeuristicLab.OptimizationExpertSystem/3.3/Views/PerformanceModelingView.Designer.cs @ 15736

Last change on this file since 15736 was 15736, checked in by abeham, 6 years ago

#1614: updates from last night ...

File size: 21.9 KB
RevLine 
[13787]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();
[13791]52      this.characteristicsViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
[13787]53      this.refreshCharacteristicsButton = new System.Windows.Forms.Button();
54      this.parametersTabPage = new System.Windows.Forms.TabPage();
55      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
[13791]56      this.crossvalidationTabPage = new System.Windows.Forms.TabPage();
[13803]57      this.topNComboBox = new System.Windows.Forms.ComboBox();
58      this.topNlabel = new System.Windows.Forms.Label();
[15736]59      this.ndcgLabel = new System.Windows.Forms.Label();
[13794]60      this.kendallsTauLabel = new System.Windows.Forms.Label();
[13797]61      this.predictedLabel = new System.Windows.Forms.Label();
62      this.absoluteLogErrorLabel = new System.Windows.Forms.Label();
[13794]63      this.absoluteErrorLabel = new System.Windows.Forms.Label();
[15736]64      this.ncdgView = new HeuristicLab.Data.Views.StringConvertibleValueView();
[13794]65      this.kendallsTauView = new HeuristicLab.Data.Views.StringConvertibleValueView();
[13797]66      this.absoluteLogErrorView = new HeuristicLab.Data.Views.StringConvertibleValueView();
[13794]67      this.absoluteErrorView = new HeuristicLab.Data.Views.StringConvertibleValueView();
68      this.confusionMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
[13791]69      this.xValidateButton = new System.Windows.Forms.Button();
70      this.minTargetView = new HeuristicLab.Data.Views.StringConvertibleValueView();
71      this.minimumTargetLabel = new System.Windows.Forms.Label();
[15736]72      this.spearmansRhoView = new HeuristicLab.Data.Views.StringConvertibleValueView();
73      this.spearmansRhoLabel = new System.Windows.Forms.Label();
[13787]74      this.tabControl.SuspendLayout();
75      this.characteristicsTabPage.SuspendLayout();
76      this.parametersTabPage.SuspendLayout();
[13791]77      this.crossvalidationTabPage.SuspendLayout();
[13787]78      this.SuspendLayout();
79      //
80      // recommenderLabel
81      //
82      this.recommenderLabel.AutoSize = true;
83      this.recommenderLabel.Location = new System.Drawing.Point(5, 6);
84      this.recommenderLabel.Name = "recommenderLabel";
85      this.recommenderLabel.Size = new System.Drawing.Size(79, 13);
86      this.recommenderLabel.TabIndex = 12;
87      this.recommenderLabel.Text = "Recommender:";
88      //
89      // recommenderComboBox
90      //
91      this.recommenderComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
92      this.recommenderComboBox.FormattingEnabled = true;
93      this.recommenderComboBox.Location = new System.Drawing.Point(90, 3);
94      this.recommenderComboBox.Name = "recommenderComboBox";
[13791]95      this.recommenderComboBox.Size = new System.Drawing.Size(206, 21);
[13787]96      this.recommenderComboBox.TabIndex = 11;
97      this.recommenderComboBox.SelectedIndexChanged += new System.EventHandler(this.RecommenderComboBoxOnSelectedIndexChanged);
98      //
99      // recommendStartButton
100      //
[13791]101      this.recommendStartButton.Location = new System.Drawing.Point(442, 1);
[13787]102      this.recommendStartButton.Name = "recommendStartButton";
103      this.recommendStartButton.Size = new System.Drawing.Size(26, 23);
104      this.recommendStartButton.TabIndex = 13;
105      this.recommendStartButton.Text = "Start";
106      this.recommendStartButton.UseVisualStyleBackColor = true;
107      this.recommendStartButton.Click += new System.EventHandler(this.RecommendStartButtonOnClick);
108      //
109      // tabControl
110      //
111      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
112            | System.Windows.Forms.AnchorStyles.Left)
113            | System.Windows.Forms.AnchorStyles.Right)));
114      this.tabControl.Controls.Add(this.characteristicsTabPage);
115      this.tabControl.Controls.Add(this.parametersTabPage);
[13791]116      this.tabControl.Controls.Add(this.crossvalidationTabPage);
[13787]117      this.tabControl.Location = new System.Drawing.Point(0, 30);
118      this.tabControl.Name = "tabControl";
119      this.tabControl.SelectedIndex = 0;
[13797]120      this.tabControl.Size = new System.Drawing.Size(960, 509);
[13787]121      this.tabControl.TabIndex = 14;
122      //
123      // characteristicsTabPage
124      //
125      this.characteristicsTabPage.Controls.Add(this.characteristicsViewHost);
126      this.characteristicsTabPage.Controls.Add(this.refreshCharacteristicsButton);
127      this.characteristicsTabPage.Location = new System.Drawing.Point(4, 22);
128      this.characteristicsTabPage.Name = "characteristicsTabPage";
129      this.characteristicsTabPage.Padding = new System.Windows.Forms.Padding(3);
[13797]130      this.characteristicsTabPage.Size = new System.Drawing.Size(952, 483);
[13787]131      this.characteristicsTabPage.TabIndex = 2;
132      this.characteristicsTabPage.Text = "Characteristics";
133      this.characteristicsTabPage.UseVisualStyleBackColor = true;
134      //
[13791]135      // characteristicsViewHost
136      //
137      this.characteristicsViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
138            | System.Windows.Forms.AnchorStyles.Left)
139            | System.Windows.Forms.AnchorStyles.Right)));
140      this.characteristicsViewHost.Caption = "View";
141      this.characteristicsViewHost.Content = null;
142      this.characteristicsViewHost.Enabled = false;
143      this.characteristicsViewHost.Location = new System.Drawing.Point(6, 35);
144      this.characteristicsViewHost.Name = "characteristicsViewHost";
145      this.characteristicsViewHost.ReadOnly = false;
[13803]146      this.characteristicsViewHost.Size = new System.Drawing.Size(940, 442);
[13791]147      this.characteristicsViewHost.TabIndex = 1;
148      this.characteristicsViewHost.ViewsLabelVisible = true;
149      this.characteristicsViewHost.ViewType = null;
150      //
[13787]151      // refreshCharacteristicsButton
152      //
153      this.refreshCharacteristicsButton.Location = new System.Drawing.Point(6, 6);
154      this.refreshCharacteristicsButton.Name = "refreshCharacteristicsButton";
155      this.refreshCharacteristicsButton.Size = new System.Drawing.Size(26, 23);
156      this.refreshCharacteristicsButton.TabIndex = 0;
157      this.refreshCharacteristicsButton.Text = "Refresh";
158      this.refreshCharacteristicsButton.UseVisualStyleBackColor = true;
159      this.refreshCharacteristicsButton.Click += new System.EventHandler(this.RefreshCharacteristicsButtonOnClick);
160      //
161      // parametersTabPage
162      //
163      this.parametersTabPage.Controls.Add(this.parameterCollectionView);
164      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
165      this.parametersTabPage.Name = "parametersTabPage";
166      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
[13797]167      this.parametersTabPage.Size = new System.Drawing.Size(952, 483);
[13787]168      this.parametersTabPage.TabIndex = 0;
169      this.parametersTabPage.Text = "Parameters";
170      this.parametersTabPage.UseVisualStyleBackColor = true;
171      //
172      // parameterCollectionView
173      //
174      this.parameterCollectionView.AllowEditingOfHiddenParameters = true;
175      this.parameterCollectionView.Caption = "ParameterCollection View";
176      this.parameterCollectionView.Content = null;
177      this.parameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
178      this.parameterCollectionView.Location = new System.Drawing.Point(3, 3);
179      this.parameterCollectionView.Name = "parameterCollectionView";
180      this.parameterCollectionView.ReadOnly = false;
181      this.parameterCollectionView.ShowDetails = true;
[13797]182      this.parameterCollectionView.Size = new System.Drawing.Size(946, 477);
[13787]183      this.parameterCollectionView.TabIndex = 0;
184      //
[13791]185      // crossvalidationTabPage
[13787]186      //
[13803]187      this.crossvalidationTabPage.Controls.Add(this.topNComboBox);
188      this.crossvalidationTabPage.Controls.Add(this.topNlabel);
189      this.crossvalidationTabPage.Controls.Add(this.ndcgLabel);
[15736]190      this.crossvalidationTabPage.Controls.Add(this.spearmansRhoLabel);
[13794]191      this.crossvalidationTabPage.Controls.Add(this.kendallsTauLabel);
192      this.crossvalidationTabPage.Controls.Add(this.predictedLabel);
[13797]193      this.crossvalidationTabPage.Controls.Add(this.absoluteLogErrorLabel);
[13794]194      this.crossvalidationTabPage.Controls.Add(this.absoluteErrorLabel);
[13803]195      this.crossvalidationTabPage.Controls.Add(this.ncdgView);
[15736]196      this.crossvalidationTabPage.Controls.Add(this.spearmansRhoView);
[13794]197      this.crossvalidationTabPage.Controls.Add(this.kendallsTauView);
[13797]198      this.crossvalidationTabPage.Controls.Add(this.absoluteLogErrorView);
[13794]199      this.crossvalidationTabPage.Controls.Add(this.absoluteErrorView);
200      this.crossvalidationTabPage.Controls.Add(this.confusionMatrixView);
[13791]201      this.crossvalidationTabPage.Controls.Add(this.xValidateButton);
202      this.crossvalidationTabPage.Location = new System.Drawing.Point(4, 22);
203      this.crossvalidationTabPage.Name = "crossvalidationTabPage";
204      this.crossvalidationTabPage.Padding = new System.Windows.Forms.Padding(3);
[13797]205      this.crossvalidationTabPage.Size = new System.Drawing.Size(952, 483);
[13791]206      this.crossvalidationTabPage.TabIndex = 1;
207      this.crossvalidationTabPage.Text = "Crossvalidation";
208      this.crossvalidationTabPage.UseVisualStyleBackColor = true;
[13787]209      //
[13803]210      // topNComboBox
211      //
212      this.topNComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
213      this.topNComboBox.FormattingEnabled = true;
214      this.topNComboBox.Location = new System.Drawing.Point(331, 9);
215      this.topNComboBox.Name = "topNComboBox";
216      this.topNComboBox.Size = new System.Drawing.Size(76, 21);
217      this.topNComboBox.TabIndex = 5;
218      this.topNComboBox.SelectedIndexChanged += new System.EventHandler(this.topNComboBox_SelectedIndexChanged);
219      //
220      // topNlabel
221      //
222      this.topNlabel.AutoSize = true;
223      this.topNlabel.Location = new System.Drawing.Point(192, 12);
224      this.topNlabel.Name = "topNlabel";
225      this.topNlabel.Size = new System.Drawing.Size(133, 13);
226      this.topNlabel.TabIndex = 4;
227      this.topNlabel.Text = "Evaluate only best ranked:";
228      //
[15736]229      // ndcgLabel
230      //
231      this.ndcgLabel.AutoSize = true;
232      this.ndcgLabel.Location = new System.Drawing.Point(519, 165);
233      this.ndcgLabel.Margin = new System.Windows.Forms.Padding(3);
234      this.ndcgLabel.Name = "ndcgLabel";
235      this.ndcgLabel.Size = new System.Drawing.Size(106, 13);
236      this.ndcgLabel.TabIndex = 3;
237      this.ndcgLabel.Text = "Mean NDCG (top N):";
238      //
[13794]239      // kendallsTauLabel
240      //
241      this.kendallsTauLabel.AutoSize = true;
[13803]242      this.kendallsTauLabel.Location = new System.Drawing.Point(519, 224);
[13794]243      this.kendallsTauLabel.Margin = new System.Windows.Forms.Padding(3);
244      this.kendallsTauLabel.Name = "kendallsTauLabel";
245      this.kendallsTauLabel.Size = new System.Drawing.Size(104, 13);
246      this.kendallsTauLabel.TabIndex = 3;
247      this.kendallsTauLabel.Text = "Mean Kendall\'s Tau:";
248      //
[13797]249      // predictedLabel
250      //
251      this.predictedLabel.AutoSize = true;
252      this.predictedLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
253      this.predictedLabel.Location = new System.Drawing.Point(223, 52);
254      this.predictedLabel.Margin = new System.Windows.Forms.Padding(3);
255      this.predictedLabel.Name = "predictedLabel";
256      this.predictedLabel.Size = new System.Drawing.Size(69, 13);
257      this.predictedLabel.TabIndex = 3;
258      this.predictedLabel.Text = "PREDICTED";
259      //
260      // absoluteLogErrorLabel
261      //
262      this.absoluteLogErrorLabel.AutoSize = true;
263      this.absoluteLogErrorLabel.Location = new System.Drawing.Point(519, 109);
264      this.absoluteLogErrorLabel.Margin = new System.Windows.Forms.Padding(3);
265      this.absoluteLogErrorLabel.Name = "absoluteLogErrorLabel";
[13803]266      this.absoluteLogErrorLabel.Size = new System.Drawing.Size(162, 13);
[13797]267      this.absoluteLogErrorLabel.TabIndex = 3;
[13803]268      this.absoluteLogErrorLabel.Text = "Mean Absolute Log Error (top N):";
[13797]269      //
[13794]270      // absoluteErrorLabel
271      //
272      this.absoluteErrorLabel.AutoSize = true;
[13797]273      this.absoluteErrorLabel.Location = new System.Drawing.Point(519, 52);
[13794]274      this.absoluteErrorLabel.Margin = new System.Windows.Forms.Padding(3);
275      this.absoluteErrorLabel.Name = "absoluteErrorLabel";
[13803]276      this.absoluteErrorLabel.Size = new System.Drawing.Size(141, 13);
[13794]277      this.absoluteErrorLabel.TabIndex = 3;
[13803]278      this.absoluteErrorLabel.Text = "Mean Absolute Error (top N):";
[13794]279      //
[15736]280      // ncdgView
281      //
282      this.ncdgView.Caption = "StringConvertibleValue View";
283      this.ncdgView.Content = null;
284      this.ncdgView.LabelVisible = false;
285      this.ncdgView.Location = new System.Drawing.Point(503, 184);
286      this.ncdgView.Name = "ncdgView";
287      this.ncdgView.ReadOnly = true;
288      this.ncdgView.Size = new System.Drawing.Size(194, 21);
289      this.ncdgView.TabIndex = 2;
290      //
[13794]291      // kendallsTauView
292      //
293      this.kendallsTauView.Caption = "StringConvertibleValue View";
294      this.kendallsTauView.Content = null;
295      this.kendallsTauView.LabelVisible = false;
[13803]296      this.kendallsTauView.Location = new System.Drawing.Point(503, 243);
[13794]297      this.kendallsTauView.Name = "kendallsTauView";
298      this.kendallsTauView.ReadOnly = true;
299      this.kendallsTauView.Size = new System.Drawing.Size(194, 21);
300      this.kendallsTauView.TabIndex = 2;
301      //
[13797]302      // absoluteLogErrorView
303      //
304      this.absoluteLogErrorView.Caption = "StringConvertibleValue View";
305      this.absoluteLogErrorView.Content = null;
306      this.absoluteLogErrorView.LabelVisible = false;
307      this.absoluteLogErrorView.Location = new System.Drawing.Point(503, 128);
308      this.absoluteLogErrorView.Name = "absoluteLogErrorView";
309      this.absoluteLogErrorView.ReadOnly = true;
310      this.absoluteLogErrorView.Size = new System.Drawing.Size(194, 21);
311      this.absoluteLogErrorView.TabIndex = 2;
312      //
[13794]313      // absoluteErrorView
314      //
315      this.absoluteErrorView.Caption = "StringConvertibleValue View";
316      this.absoluteErrorView.Content = null;
317      this.absoluteErrorView.LabelVisible = false;
[13797]318      this.absoluteErrorView.Location = new System.Drawing.Point(503, 71);
[13794]319      this.absoluteErrorView.Name = "absoluteErrorView";
320      this.absoluteErrorView.ReadOnly = true;
321      this.absoluteErrorView.Size = new System.Drawing.Size(194, 21);
322      this.absoluteErrorView.TabIndex = 2;
323      //
324      // confusionMatrixView
325      //
326      this.confusionMatrixView.Caption = "StringConvertibleMatrix View";
327      this.confusionMatrixView.Content = null;
328      this.confusionMatrixView.Location = new System.Drawing.Point(37, 71);
329      this.confusionMatrixView.Name = "confusionMatrixView";
330      this.confusionMatrixView.ReadOnly = true;
331      this.confusionMatrixView.ShowRowsAndColumnsTextBox = false;
332      this.confusionMatrixView.ShowStatisticalInformation = false;
[13803]333      this.confusionMatrixView.Size = new System.Drawing.Size(438, 134);
[13794]334      this.confusionMatrixView.TabIndex = 1;
335      //
[13791]336      // xValidateButton
[13787]337      //
[13791]338      this.xValidateButton.Location = new System.Drawing.Point(7, 7);
339      this.xValidateButton.Name = "xValidateButton";
340      this.xValidateButton.Size = new System.Drawing.Size(163, 23);
341      this.xValidateButton.TabIndex = 0;
342      this.xValidateButton.Text = "X-Validate Leave One Out";
343      this.xValidateButton.UseVisualStyleBackColor = true;
344      this.xValidateButton.Click += new System.EventHandler(this.xValidateButton_Click);
[13787]345      //
[13791]346      // minTargetView
347      //
348      this.minTargetView.Caption = "StringConvertibleValue View";
349      this.minTargetView.Content = null;
350      this.minTargetView.LabelVisible = false;
351      this.minTargetView.Location = new System.Drawing.Point(350, 3);
352      this.minTargetView.Name = "minTargetView";
353      this.minTargetView.ReadOnly = false;
354      this.minTargetView.Size = new System.Drawing.Size(86, 21);
355      this.minTargetView.TabIndex = 18;
356      //
357      // minimumTargetLabel
358      //
359      this.minimumTargetLabel.AutoSize = true;
360      this.minimumTargetLabel.Location = new System.Drawing.Point(311, 6);
361      this.minimumTargetLabel.Name = "minimumTargetLabel";
362      this.minimumTargetLabel.Size = new System.Drawing.Size(41, 13);
363      this.minimumTargetLabel.TabIndex = 17;
364      this.minimumTargetLabel.Text = "Target:";
365      //
[15736]366      // spearmansRhoView
[13803]367      //
[15736]368      this.spearmansRhoView.Caption = "StringConvertibleValue View";
369      this.spearmansRhoView.Content = null;
370      this.spearmansRhoView.LabelVisible = false;
371      this.spearmansRhoView.Location = new System.Drawing.Point(503, 303);
372      this.spearmansRhoView.Name = "spearmansRhoView";
373      this.spearmansRhoView.ReadOnly = true;
374      this.spearmansRhoView.Size = new System.Drawing.Size(194, 21);
375      this.spearmansRhoView.TabIndex = 2;
[13803]376      //
[15736]377      // spearmansRhoLabel
[13803]378      //
[15736]379      this.spearmansRhoLabel.AutoSize = true;
380      this.spearmansRhoLabel.Location = new System.Drawing.Point(519, 284);
381      this.spearmansRhoLabel.Margin = new System.Windows.Forms.Padding(3);
382      this.spearmansRhoLabel.Name = "spearmansRhoLabel";
383      this.spearmansRhoLabel.Size = new System.Drawing.Size(118, 13);
384      this.spearmansRhoLabel.TabIndex = 3;
385      this.spearmansRhoLabel.Text = "Mean Spearman\'s Rho:";
[13803]386      //
[13787]387      // PerformanceModelingView
388      //
389      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
390      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[13791]391      this.Controls.Add(this.minimumTargetLabel);
392      this.Controls.Add(this.minTargetView);
[13787]393      this.Controls.Add(this.tabControl);
394      this.Controls.Add(this.recommenderLabel);
395      this.Controls.Add(this.recommenderComboBox);
396      this.Controls.Add(this.recommendStartButton);
397      this.Name = "PerformanceModelingView";
[13797]398      this.Size = new System.Drawing.Size(960, 539);
[13787]399      this.tabControl.ResumeLayout(false);
400      this.characteristicsTabPage.ResumeLayout(false);
401      this.parametersTabPage.ResumeLayout(false);
[13791]402      this.crossvalidationTabPage.ResumeLayout(false);
[13794]403      this.crossvalidationTabPage.PerformLayout();
[13787]404      this.ResumeLayout(false);
405      this.PerformLayout();
406
407    }
408
409    #endregion
410
411    private System.Windows.Forms.Label recommenderLabel;
412    private System.Windows.Forms.ComboBox recommenderComboBox;
413    private System.Windows.Forms.Button recommendStartButton;
414    private System.Windows.Forms.TabControl tabControl;
415    private System.Windows.Forms.TabPage parametersTabPage;
[13791]416    private System.Windows.Forms.TabPage crossvalidationTabPage;
[13787]417    private Core.Views.ParameterCollectionView parameterCollectionView;
418    private System.Windows.Forms.TabPage characteristicsTabPage;
419    private System.Windows.Forms.Button refreshCharacteristicsButton;
420    private MainForm.WindowsForms.ViewHost characteristicsViewHost;
[13791]421    private System.Windows.Forms.Button xValidateButton;
422    private Data.Views.StringConvertibleValueView minTargetView;
423    private System.Windows.Forms.Label minimumTargetLabel;
[13794]424    private System.Windows.Forms.Label kendallsTauLabel;
425    private System.Windows.Forms.Label absoluteErrorLabel;
426    private Data.Views.StringConvertibleValueView kendallsTauView;
427    private Data.Views.StringConvertibleValueView absoluteErrorView;
428    private Data.Views.StringConvertibleMatrixView confusionMatrixView;
429    private System.Windows.Forms.Label predictedLabel;
[13797]430    private System.Windows.Forms.Label absoluteLogErrorLabel;
431    private Data.Views.StringConvertibleValueView absoluteLogErrorView;
[13803]432    private System.Windows.Forms.ComboBox topNComboBox;
433    private System.Windows.Forms.Label topNlabel;
434    private System.Windows.Forms.Label ndcgLabel;
435    private Data.Views.StringConvertibleValueView ncdgView;
[15736]436    private System.Windows.Forms.Label spearmansRhoLabel;
437    private Data.Views.StringConvertibleValueView spearmansRhoView;
[13787]438  }
439}
Note: See TracBrowser for help on using the repository browser.