Free cookie consent management tool by TermsFeed Policy Generator

source: branches/LearningClassifierSystems/HeuristicLab.Problems.XCS.Views/3.3/XCSModelView.Designer.cs @ 9161

Last change on this file since 9161 was 9154, checked in by sforsten, 12 years ago

#1980:

  • added XCSSolution, XCSModel, XCSClassifier to represent the xcs classifier
  • XCSSolution also shows the current accuracy (training and test partition has to be added)
  • added XCSSolutionAnalyzer to create a XCSSolution during the run of the algorithm
  • added XCSModelView to show the xcs model
  • fixed a bug in XCSDeletionOperator (sometimes it deleted less classifiers than it should)
  • moved some parameter from ConditionActionClassificationProblem to ConditionActionClassificationProblemData
File size: 5.0 KB
Line 
1namespace HeuristicLab.Problems.XCS.Views {
2  partial class XCSModelView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.dataGridView = new System.Windows.Forms.DataGridView();
27      this.Classifier = new System.Windows.Forms.DataGridViewTextBoxColumn();
28      this.Prediction = new System.Windows.Forms.DataGridViewTextBoxColumn();
29      this.Error = new System.Windows.Forms.DataGridViewTextBoxColumn();
30      this.Fitness = new System.Windows.Forms.DataGridViewTextBoxColumn();
31      this.Numerosity = new System.Windows.Forms.DataGridViewTextBoxColumn();
32      this.Timestamp = new System.Windows.Forms.DataGridViewTextBoxColumn();
33      this.Experience = new System.Windows.Forms.DataGridViewTextBoxColumn();
34      this.AverageActionSetSize = new System.Windows.Forms.DataGridViewTextBoxColumn();
35      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
36      this.SuspendLayout();
37      //
38      // dataGridView
39      //
40      this.dataGridView.AllowUserToAddRows = false;
41      this.dataGridView.AllowUserToDeleteRows = false;
42      this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
43      this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
44            this.Classifier,
45            this.Prediction,
46            this.Error,
47            this.Fitness,
48            this.Numerosity,
49            this.Timestamp,
50            this.Experience,
51            this.AverageActionSetSize});
52      this.dataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
53      this.dataGridView.Location = new System.Drawing.Point(0, 0);
54      this.dataGridView.Name = "dataGridView";
55      this.dataGridView.ReadOnly = true;
56      this.dataGridView.Size = new System.Drawing.Size(344, 240);
57      this.dataGridView.TabIndex = 0;
58      //
59      // Classifier
60      //
61      this.Classifier.HeaderText = "Classifier";
62      this.Classifier.Name = "Classifier";
63      this.Classifier.ReadOnly = true;
64      //
65      // Prediction
66      //
67      this.Prediction.HeaderText = "Prediction";
68      this.Prediction.Name = "Prediction";
69      this.Prediction.ReadOnly = true;
70      //
71      // Error
72      //
73      this.Error.HeaderText = "Error";
74      this.Error.Name = "Error";
75      this.Error.ReadOnly = true;
76      //
77      // Fitness
78      //
79      this.Fitness.HeaderText = "Fitness";
80      this.Fitness.Name = "Fitness";
81      this.Fitness.ReadOnly = true;
82      //
83      // Numerosity
84      //
85      this.Numerosity.HeaderText = "Numerosity";
86      this.Numerosity.Name = "Numerosity";
87      this.Numerosity.ReadOnly = true;
88      //
89      // Timestamp
90      //
91      this.Timestamp.HeaderText = "Timestamp";
92      this.Timestamp.Name = "Timestamp";
93      this.Timestamp.ReadOnly = true;
94      //
95      // Experience
96      //
97      this.Experience.HeaderText = "Experience";
98      this.Experience.Name = "Experience";
99      this.Experience.ReadOnly = true;
100      //
101      // AverageActionSetSize
102      //
103      this.AverageActionSetSize.HeaderText = "AverageActionSetSize";
104      this.AverageActionSetSize.Name = "AverageActionSetSize";
105      this.AverageActionSetSize.ReadOnly = true;
106      //
107      // XCSModelView
108      //
109      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
110      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
111      this.Controls.Add(this.dataGridView);
112      this.Name = "XCSModelView";
113      this.Size = new System.Drawing.Size(344, 240);
114      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
115      this.ResumeLayout(false);
116
117    }
118
119    #endregion
120
121    private System.Windows.Forms.DataGridView dataGridView;
122    private System.Windows.Forms.DataGridViewTextBoxColumn Classifier;
123    private System.Windows.Forms.DataGridViewTextBoxColumn Prediction;
124    private System.Windows.Forms.DataGridViewTextBoxColumn Error;
125    private System.Windows.Forms.DataGridViewTextBoxColumn Fitness;
126    private System.Windows.Forms.DataGridViewTextBoxColumn Numerosity;
127    private System.Windows.Forms.DataGridViewTextBoxColumn Timestamp;
128    private System.Windows.Forms.DataGridViewTextBoxColumn Experience;
129    private System.Windows.Forms.DataGridViewTextBoxColumn AverageActionSetSize;
130  }
131}
Note: See TracBrowser for help on using the repository browser.