#region License Information
/* HeuristicLab
* Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
namespace HeuristicLab.OptimizationExpertSystem {
partial class PerformanceModelingView {
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing) {
if (disposing && (components != null)) {
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent() {
this.recommenderLabel = new System.Windows.Forms.Label();
this.recommenderComboBox = new System.Windows.Forms.ComboBox();
this.recommendStartButton = new System.Windows.Forms.Button();
this.tabControl = new System.Windows.Forms.TabControl();
this.characteristicsTabPage = new System.Windows.Forms.TabPage();
this.characteristicsViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
this.refreshCharacteristicsButton = new System.Windows.Forms.Button();
this.parametersTabPage = new System.Windows.Forms.TabPage();
this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
this.crossvalidationTabPage = new System.Windows.Forms.TabPage();
this.topNComboBox = new System.Windows.Forms.ComboBox();
this.topNlabel = new System.Windows.Forms.Label();
this.kendallsTauLabel = new System.Windows.Forms.Label();
this.predictedLabel = new System.Windows.Forms.Label();
this.absoluteLogErrorLabel = new System.Windows.Forms.Label();
this.absoluteErrorLabel = new System.Windows.Forms.Label();
this.kendallsTauView = new HeuristicLab.Data.Views.StringConvertibleValueView();
this.absoluteLogErrorView = new HeuristicLab.Data.Views.StringConvertibleValueView();
this.absoluteErrorView = new HeuristicLab.Data.Views.StringConvertibleValueView();
this.confusionMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
this.xValidateButton = new System.Windows.Forms.Button();
this.minTargetView = new HeuristicLab.Data.Views.StringConvertibleValueView();
this.minimumTargetLabel = new System.Windows.Forms.Label();
this.ncdgView = new HeuristicLab.Data.Views.StringConvertibleValueView();
this.ndcgLabel = new System.Windows.Forms.Label();
this.tabControl.SuspendLayout();
this.characteristicsTabPage.SuspendLayout();
this.parametersTabPage.SuspendLayout();
this.crossvalidationTabPage.SuspendLayout();
this.SuspendLayout();
//
// recommenderLabel
//
this.recommenderLabel.AutoSize = true;
this.recommenderLabel.Location = new System.Drawing.Point(5, 6);
this.recommenderLabel.Name = "recommenderLabel";
this.recommenderLabel.Size = new System.Drawing.Size(79, 13);
this.recommenderLabel.TabIndex = 12;
this.recommenderLabel.Text = "Recommender:";
//
// recommenderComboBox
//
this.recommenderComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.recommenderComboBox.FormattingEnabled = true;
this.recommenderComboBox.Location = new System.Drawing.Point(90, 3);
this.recommenderComboBox.Name = "recommenderComboBox";
this.recommenderComboBox.Size = new System.Drawing.Size(206, 21);
this.recommenderComboBox.TabIndex = 11;
this.recommenderComboBox.SelectedIndexChanged += new System.EventHandler(this.RecommenderComboBoxOnSelectedIndexChanged);
//
// recommendStartButton
//
this.recommendStartButton.Location = new System.Drawing.Point(442, 1);
this.recommendStartButton.Name = "recommendStartButton";
this.recommendStartButton.Size = new System.Drawing.Size(26, 23);
this.recommendStartButton.TabIndex = 13;
this.recommendStartButton.Text = "Start";
this.recommendStartButton.UseVisualStyleBackColor = true;
this.recommendStartButton.Click += new System.EventHandler(this.RecommendStartButtonOnClick);
//
// tabControl
//
this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tabControl.Controls.Add(this.characteristicsTabPage);
this.tabControl.Controls.Add(this.parametersTabPage);
this.tabControl.Controls.Add(this.crossvalidationTabPage);
this.tabControl.Location = new System.Drawing.Point(0, 30);
this.tabControl.Name = "tabControl";
this.tabControl.SelectedIndex = 0;
this.tabControl.Size = new System.Drawing.Size(960, 509);
this.tabControl.TabIndex = 14;
//
// characteristicsTabPage
//
this.characteristicsTabPage.Controls.Add(this.characteristicsViewHost);
this.characteristicsTabPage.Controls.Add(this.refreshCharacteristicsButton);
this.characteristicsTabPage.Location = new System.Drawing.Point(4, 22);
this.characteristicsTabPage.Name = "characteristicsTabPage";
this.characteristicsTabPage.Padding = new System.Windows.Forms.Padding(3);
this.characteristicsTabPage.Size = new System.Drawing.Size(952, 483);
this.characteristicsTabPage.TabIndex = 2;
this.characteristicsTabPage.Text = "Characteristics";
this.characteristicsTabPage.UseVisualStyleBackColor = true;
//
// characteristicsViewHost
//
this.characteristicsViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.characteristicsViewHost.Caption = "View";
this.characteristicsViewHost.Content = null;
this.characteristicsViewHost.Enabled = false;
this.characteristicsViewHost.Location = new System.Drawing.Point(6, 35);
this.characteristicsViewHost.Name = "characteristicsViewHost";
this.characteristicsViewHost.ReadOnly = false;
this.characteristicsViewHost.Size = new System.Drawing.Size(940, 442);
this.characteristicsViewHost.TabIndex = 1;
this.characteristicsViewHost.ViewsLabelVisible = true;
this.characteristicsViewHost.ViewType = null;
//
// refreshCharacteristicsButton
//
this.refreshCharacteristicsButton.Location = new System.Drawing.Point(6, 6);
this.refreshCharacteristicsButton.Name = "refreshCharacteristicsButton";
this.refreshCharacteristicsButton.Size = new System.Drawing.Size(26, 23);
this.refreshCharacteristicsButton.TabIndex = 0;
this.refreshCharacteristicsButton.Text = "Refresh";
this.refreshCharacteristicsButton.UseVisualStyleBackColor = true;
this.refreshCharacteristicsButton.Click += new System.EventHandler(this.RefreshCharacteristicsButtonOnClick);
//
// parametersTabPage
//
this.parametersTabPage.Controls.Add(this.parameterCollectionView);
this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
this.parametersTabPage.Name = "parametersTabPage";
this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
this.parametersTabPage.Size = new System.Drawing.Size(952, 483);
this.parametersTabPage.TabIndex = 0;
this.parametersTabPage.Text = "Parameters";
this.parametersTabPage.UseVisualStyleBackColor = true;
//
// parameterCollectionView
//
this.parameterCollectionView.AllowEditingOfHiddenParameters = true;
this.parameterCollectionView.Caption = "ParameterCollection View";
this.parameterCollectionView.Content = null;
this.parameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
this.parameterCollectionView.Location = new System.Drawing.Point(3, 3);
this.parameterCollectionView.Name = "parameterCollectionView";
this.parameterCollectionView.ReadOnly = false;
this.parameterCollectionView.ShowDetails = true;
this.parameterCollectionView.Size = new System.Drawing.Size(946, 477);
this.parameterCollectionView.TabIndex = 0;
//
// crossvalidationTabPage
//
this.crossvalidationTabPage.Controls.Add(this.topNComboBox);
this.crossvalidationTabPage.Controls.Add(this.topNlabel);
this.crossvalidationTabPage.Controls.Add(this.ndcgLabel);
this.crossvalidationTabPage.Controls.Add(this.kendallsTauLabel);
this.crossvalidationTabPage.Controls.Add(this.predictedLabel);
this.crossvalidationTabPage.Controls.Add(this.absoluteLogErrorLabel);
this.crossvalidationTabPage.Controls.Add(this.absoluteErrorLabel);
this.crossvalidationTabPage.Controls.Add(this.ncdgView);
this.crossvalidationTabPage.Controls.Add(this.kendallsTauView);
this.crossvalidationTabPage.Controls.Add(this.absoluteLogErrorView);
this.crossvalidationTabPage.Controls.Add(this.absoluteErrorView);
this.crossvalidationTabPage.Controls.Add(this.confusionMatrixView);
this.crossvalidationTabPage.Controls.Add(this.xValidateButton);
this.crossvalidationTabPage.Location = new System.Drawing.Point(4, 22);
this.crossvalidationTabPage.Name = "crossvalidationTabPage";
this.crossvalidationTabPage.Padding = new System.Windows.Forms.Padding(3);
this.crossvalidationTabPage.Size = new System.Drawing.Size(952, 483);
this.crossvalidationTabPage.TabIndex = 1;
this.crossvalidationTabPage.Text = "Crossvalidation";
this.crossvalidationTabPage.UseVisualStyleBackColor = true;
//
// topNComboBox
//
this.topNComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.topNComboBox.FormattingEnabled = true;
this.topNComboBox.Location = new System.Drawing.Point(331, 9);
this.topNComboBox.Name = "topNComboBox";
this.topNComboBox.Size = new System.Drawing.Size(76, 21);
this.topNComboBox.TabIndex = 5;
this.topNComboBox.SelectedIndexChanged += new System.EventHandler(this.topNComboBox_SelectedIndexChanged);
//
// topNlabel
//
this.topNlabel.AutoSize = true;
this.topNlabel.Location = new System.Drawing.Point(192, 12);
this.topNlabel.Name = "topNlabel";
this.topNlabel.Size = new System.Drawing.Size(133, 13);
this.topNlabel.TabIndex = 4;
this.topNlabel.Text = "Evaluate only best ranked:";
//
// kendallsTauLabel
//
this.kendallsTauLabel.AutoSize = true;
this.kendallsTauLabel.Location = new System.Drawing.Point(519, 224);
this.kendallsTauLabel.Margin = new System.Windows.Forms.Padding(3);
this.kendallsTauLabel.Name = "kendallsTauLabel";
this.kendallsTauLabel.Size = new System.Drawing.Size(104, 13);
this.kendallsTauLabel.TabIndex = 3;
this.kendallsTauLabel.Text = "Mean Kendall\'s Tau:";
//
// predictedLabel
//
this.predictedLabel.AutoSize = true;
this.predictedLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.predictedLabel.Location = new System.Drawing.Point(223, 52);
this.predictedLabel.Margin = new System.Windows.Forms.Padding(3);
this.predictedLabel.Name = "predictedLabel";
this.predictedLabel.Size = new System.Drawing.Size(69, 13);
this.predictedLabel.TabIndex = 3;
this.predictedLabel.Text = "PREDICTED";
//
// absoluteLogErrorLabel
//
this.absoluteLogErrorLabel.AutoSize = true;
this.absoluteLogErrorLabel.Location = new System.Drawing.Point(519, 109);
this.absoluteLogErrorLabel.Margin = new System.Windows.Forms.Padding(3);
this.absoluteLogErrorLabel.Name = "absoluteLogErrorLabel";
this.absoluteLogErrorLabel.Size = new System.Drawing.Size(162, 13);
this.absoluteLogErrorLabel.TabIndex = 3;
this.absoluteLogErrorLabel.Text = "Mean Absolute Log Error (top N):";
//
// absoluteErrorLabel
//
this.absoluteErrorLabel.AutoSize = true;
this.absoluteErrorLabel.Location = new System.Drawing.Point(519, 52);
this.absoluteErrorLabel.Margin = new System.Windows.Forms.Padding(3);
this.absoluteErrorLabel.Name = "absoluteErrorLabel";
this.absoluteErrorLabel.Size = new System.Drawing.Size(141, 13);
this.absoluteErrorLabel.TabIndex = 3;
this.absoluteErrorLabel.Text = "Mean Absolute Error (top N):";
//
// kendallsTauView
//
this.kendallsTauView.Caption = "StringConvertibleValue View";
this.kendallsTauView.Content = null;
this.kendallsTauView.LabelVisible = false;
this.kendallsTauView.Location = new System.Drawing.Point(503, 243);
this.kendallsTauView.Name = "kendallsTauView";
this.kendallsTauView.ReadOnly = true;
this.kendallsTauView.Size = new System.Drawing.Size(194, 21);
this.kendallsTauView.TabIndex = 2;
//
// absoluteLogErrorView
//
this.absoluteLogErrorView.Caption = "StringConvertibleValue View";
this.absoluteLogErrorView.Content = null;
this.absoluteLogErrorView.LabelVisible = false;
this.absoluteLogErrorView.Location = new System.Drawing.Point(503, 128);
this.absoluteLogErrorView.Name = "absoluteLogErrorView";
this.absoluteLogErrorView.ReadOnly = true;
this.absoluteLogErrorView.Size = new System.Drawing.Size(194, 21);
this.absoluteLogErrorView.TabIndex = 2;
//
// absoluteErrorView
//
this.absoluteErrorView.Caption = "StringConvertibleValue View";
this.absoluteErrorView.Content = null;
this.absoluteErrorView.LabelVisible = false;
this.absoluteErrorView.Location = new System.Drawing.Point(503, 71);
this.absoluteErrorView.Name = "absoluteErrorView";
this.absoluteErrorView.ReadOnly = true;
this.absoluteErrorView.Size = new System.Drawing.Size(194, 21);
this.absoluteErrorView.TabIndex = 2;
//
// confusionMatrixView
//
this.confusionMatrixView.Caption = "StringConvertibleMatrix View";
this.confusionMatrixView.Content = null;
this.confusionMatrixView.Location = new System.Drawing.Point(37, 71);
this.confusionMatrixView.Name = "confusionMatrixView";
this.confusionMatrixView.ReadOnly = true;
this.confusionMatrixView.ShowRowsAndColumnsTextBox = false;
this.confusionMatrixView.ShowStatisticalInformation = false;
this.confusionMatrixView.Size = new System.Drawing.Size(438, 134);
this.confusionMatrixView.TabIndex = 1;
//
// xValidateButton
//
this.xValidateButton.Location = new System.Drawing.Point(7, 7);
this.xValidateButton.Name = "xValidateButton";
this.xValidateButton.Size = new System.Drawing.Size(163, 23);
this.xValidateButton.TabIndex = 0;
this.xValidateButton.Text = "X-Validate Leave One Out";
this.xValidateButton.UseVisualStyleBackColor = true;
this.xValidateButton.Click += new System.EventHandler(this.xValidateButton_Click);
//
// minTargetView
//
this.minTargetView.Caption = "StringConvertibleValue View";
this.minTargetView.Content = null;
this.minTargetView.LabelVisible = false;
this.minTargetView.Location = new System.Drawing.Point(350, 3);
this.minTargetView.Name = "minTargetView";
this.minTargetView.ReadOnly = false;
this.minTargetView.Size = new System.Drawing.Size(86, 21);
this.minTargetView.TabIndex = 18;
//
// minimumTargetLabel
//
this.minimumTargetLabel.AutoSize = true;
this.minimumTargetLabel.Location = new System.Drawing.Point(311, 6);
this.minimumTargetLabel.Name = "minimumTargetLabel";
this.minimumTargetLabel.Size = new System.Drawing.Size(41, 13);
this.minimumTargetLabel.TabIndex = 17;
this.minimumTargetLabel.Text = "Target:";
//
// ncdgView
//
this.ncdgView.Caption = "StringConvertibleValue View";
this.ncdgView.Content = null;
this.ncdgView.LabelVisible = false;
this.ncdgView.Location = new System.Drawing.Point(503, 184);
this.ncdgView.Name = "ncdgView";
this.ncdgView.ReadOnly = true;
this.ncdgView.Size = new System.Drawing.Size(194, 21);
this.ncdgView.TabIndex = 2;
//
// ndcgLabel
//
this.ndcgLabel.AutoSize = true;
this.ndcgLabel.Location = new System.Drawing.Point(519, 165);
this.ndcgLabel.Margin = new System.Windows.Forms.Padding(3);
this.ndcgLabel.Name = "ndcgLabel";
this.ndcgLabel.Size = new System.Drawing.Size(106, 13);
this.ndcgLabel.TabIndex = 3;
this.ndcgLabel.Text = "Mean NDCG (top N):";
//
// PerformanceModelingView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.minimumTargetLabel);
this.Controls.Add(this.minTargetView);
this.Controls.Add(this.tabControl);
this.Controls.Add(this.recommenderLabel);
this.Controls.Add(this.recommenderComboBox);
this.Controls.Add(this.recommendStartButton);
this.Name = "PerformanceModelingView";
this.Size = new System.Drawing.Size(960, 539);
this.tabControl.ResumeLayout(false);
this.characteristicsTabPage.ResumeLayout(false);
this.parametersTabPage.ResumeLayout(false);
this.crossvalidationTabPage.ResumeLayout(false);
this.crossvalidationTabPage.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label recommenderLabel;
private System.Windows.Forms.ComboBox recommenderComboBox;
private System.Windows.Forms.Button recommendStartButton;
private System.Windows.Forms.TabControl tabControl;
private System.Windows.Forms.TabPage parametersTabPage;
private System.Windows.Forms.TabPage crossvalidationTabPage;
private Core.Views.ParameterCollectionView parameterCollectionView;
private System.Windows.Forms.TabPage characteristicsTabPage;
private System.Windows.Forms.Button refreshCharacteristicsButton;
private MainForm.WindowsForms.ViewHost characteristicsViewHost;
private System.Windows.Forms.Button xValidateButton;
private Data.Views.StringConvertibleValueView minTargetView;
private System.Windows.Forms.Label minimumTargetLabel;
private System.Windows.Forms.Label kendallsTauLabel;
private System.Windows.Forms.Label absoluteErrorLabel;
private Data.Views.StringConvertibleValueView kendallsTauView;
private Data.Views.StringConvertibleValueView absoluteErrorView;
private Data.Views.StringConvertibleMatrixView confusionMatrixView;
private System.Windows.Forms.Label predictedLabel;
private System.Windows.Forms.Label absoluteLogErrorLabel;
private Data.Views.StringConvertibleValueView absoluteLogErrorView;
private System.Windows.Forms.ComboBox topNComboBox;
private System.Windows.Forms.Label topNlabel;
private System.Windows.Forms.Label ndcgLabel;
private Data.Views.StringConvertibleValueView ncdgView;
}
}