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 |
|
---|
22 | namespace HeuristicLab.SupportVectorMachines {
|
---|
23 | partial class SVMModelView {
|
---|
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.numberSupportVectorsLabel = new System.Windows.Forms.Label();
|
---|
48 | this.numberOfSupportVectors = new System.Windows.Forms.TextBox();
|
---|
49 | this.rhoLabel = new System.Windows.Forms.Label();
|
---|
50 | this.rho = new System.Windows.Forms.TextBox();
|
---|
51 | this.svmTypeLabel = new System.Windows.Forms.Label();
|
---|
52 | this.kernelTypeLabel = new System.Windows.Forms.Label();
|
---|
53 | this.gammaLabel = new System.Windows.Forms.Label();
|
---|
54 | this.svmType = new System.Windows.Forms.TextBox();
|
---|
55 | this.kernelType = new System.Windows.Forms.TextBox();
|
---|
56 | this.gamma = new System.Windows.Forms.TextBox();
|
---|
57 | this.textBox = new System.Windows.Forms.TextBox();
|
---|
58 | this.SuspendLayout();
|
---|
59 | //
|
---|
60 | // numberSupportVectorsLabel
|
---|
61 | //
|
---|
62 | this.numberSupportVectorsLabel.AutoSize = true;
|
---|
63 | this.numberSupportVectorsLabel.Location = new System.Drawing.Point(3, 7);
|
---|
64 | this.numberSupportVectorsLabel.Name = "numberSupportVectorsLabel";
|
---|
65 | this.numberSupportVectorsLabel.Size = new System.Drawing.Size(135, 13);
|
---|
66 | this.numberSupportVectorsLabel.TabIndex = 0;
|
---|
67 | this.numberSupportVectorsLabel.Text = "Number of support vectors:";
|
---|
68 | //
|
---|
69 | // numberOfSupportVectors
|
---|
70 | //
|
---|
71 | this.numberOfSupportVectors.Location = new System.Drawing.Point(144, 4);
|
---|
72 | this.numberOfSupportVectors.Name = "numberOfSupportVectors";
|
---|
73 | this.numberOfSupportVectors.ReadOnly = true;
|
---|
74 | this.numberOfSupportVectors.Size = new System.Drawing.Size(100, 20);
|
---|
75 | this.numberOfSupportVectors.TabIndex = 1;
|
---|
76 | //
|
---|
77 | // rhoLabel
|
---|
78 | //
|
---|
79 | this.rhoLabel.AutoSize = true;
|
---|
80 | this.rhoLabel.Location = new System.Drawing.Point(3, 33);
|
---|
81 | this.rhoLabel.Name = "rhoLabel";
|
---|
82 | this.rhoLabel.Size = new System.Drawing.Size(30, 13);
|
---|
83 | this.rhoLabel.TabIndex = 2;
|
---|
84 | this.rhoLabel.Text = "Rho:";
|
---|
85 | //
|
---|
86 | // rho
|
---|
87 | //
|
---|
88 | this.rho.Location = new System.Drawing.Point(144, 30);
|
---|
89 | this.rho.Name = "rho";
|
---|
90 | this.rho.ReadOnly = true;
|
---|
91 | this.rho.Size = new System.Drawing.Size(100, 20);
|
---|
92 | this.rho.TabIndex = 3;
|
---|
93 | //
|
---|
94 | // svmTypeLabel
|
---|
95 | //
|
---|
96 | this.svmTypeLabel.AutoSize = true;
|
---|
97 | this.svmTypeLabel.Location = new System.Drawing.Point(3, 59);
|
---|
98 | this.svmTypeLabel.Name = "svmTypeLabel";
|
---|
99 | this.svmTypeLabel.Size = new System.Drawing.Size(60, 13);
|
---|
100 | this.svmTypeLabel.TabIndex = 4;
|
---|
101 | this.svmTypeLabel.Text = "SVM Type:";
|
---|
102 | //
|
---|
103 | // kernelTypeLabel
|
---|
104 | //
|
---|
105 | this.kernelTypeLabel.AutoSize = true;
|
---|
106 | this.kernelTypeLabel.Location = new System.Drawing.Point(3, 85);
|
---|
107 | this.kernelTypeLabel.Name = "kernelTypeLabel";
|
---|
108 | this.kernelTypeLabel.Size = new System.Drawing.Size(67, 13);
|
---|
109 | this.kernelTypeLabel.TabIndex = 7;
|
---|
110 | this.kernelTypeLabel.Text = "Kernel Type:";
|
---|
111 | //
|
---|
112 | // gammaLabel
|
---|
113 | //
|
---|
114 | this.gammaLabel.AutoSize = true;
|
---|
115 | this.gammaLabel.Location = new System.Drawing.Point(3, 111);
|
---|
116 | this.gammaLabel.Name = "gammaLabel";
|
---|
117 | this.gammaLabel.Size = new System.Drawing.Size(46, 13);
|
---|
118 | this.gammaLabel.TabIndex = 8;
|
---|
119 | this.gammaLabel.Text = "Gamma:";
|
---|
120 | //
|
---|
121 | // svmType
|
---|
122 | //
|
---|
123 | this.svmType.Location = new System.Drawing.Point(144, 56);
|
---|
124 | this.svmType.Name = "svmType";
|
---|
125 | this.svmType.ReadOnly = true;
|
---|
126 | this.svmType.Size = new System.Drawing.Size(100, 20);
|
---|
127 | this.svmType.TabIndex = 10;
|
---|
128 | //
|
---|
129 | // kernelType
|
---|
130 | //
|
---|
131 | this.kernelType.Location = new System.Drawing.Point(144, 82);
|
---|
132 | this.kernelType.Name = "kernelType";
|
---|
133 | this.kernelType.ReadOnly = true;
|
---|
134 | this.kernelType.Size = new System.Drawing.Size(100, 20);
|
---|
135 | this.kernelType.TabIndex = 11;
|
---|
136 | //
|
---|
137 | // gamma
|
---|
138 | //
|
---|
139 | this.gamma.Location = new System.Drawing.Point(144, 108);
|
---|
140 | this.gamma.Name = "gamma";
|
---|
141 | this.gamma.ReadOnly = true;
|
---|
142 | this.gamma.Size = new System.Drawing.Size(100, 20);
|
---|
143 | this.gamma.TabIndex = 12;
|
---|
144 | //
|
---|
145 | // textBox
|
---|
146 | //
|
---|
147 | this.textBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
148 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
149 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
150 | this.textBox.Location = new System.Drawing.Point(0, 134);
|
---|
151 | this.textBox.Multiline = true;
|
---|
152 | this.textBox.Name = "textBox";
|
---|
153 | this.textBox.ReadOnly = true;
|
---|
154 | this.textBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
|
---|
155 | this.textBox.Size = new System.Drawing.Size(283, 171);
|
---|
156 | this.textBox.TabIndex = 13;
|
---|
157 | this.textBox.WordWrap = false;
|
---|
158 | //
|
---|
159 | // SVMModelView
|
---|
160 | //
|
---|
161 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
162 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
163 | this.Controls.Add(this.textBox);
|
---|
164 | this.Controls.Add(this.gamma);
|
---|
165 | this.Controls.Add(this.kernelType);
|
---|
166 | this.Controls.Add(this.svmType);
|
---|
167 | this.Controls.Add(this.gammaLabel);
|
---|
168 | this.Controls.Add(this.kernelTypeLabel);
|
---|
169 | this.Controls.Add(this.svmTypeLabel);
|
---|
170 | this.Controls.Add(this.rho);
|
---|
171 | this.Controls.Add(this.rhoLabel);
|
---|
172 | this.Controls.Add(this.numberOfSupportVectors);
|
---|
173 | this.Controls.Add(this.numberSupportVectorsLabel);
|
---|
174 | this.Name = "SVMModelView";
|
---|
175 | this.Size = new System.Drawing.Size(283, 308);
|
---|
176 | this.ResumeLayout(false);
|
---|
177 | this.PerformLayout();
|
---|
178 |
|
---|
179 | }
|
---|
180 |
|
---|
181 | #endregion
|
---|
182 |
|
---|
183 | private System.Windows.Forms.Label numberSupportVectorsLabel;
|
---|
184 | private System.Windows.Forms.TextBox numberOfSupportVectors;
|
---|
185 | private System.Windows.Forms.Label rhoLabel;
|
---|
186 | private System.Windows.Forms.TextBox rho;
|
---|
187 | private System.Windows.Forms.Label svmTypeLabel;
|
---|
188 | private System.Windows.Forms.Label kernelTypeLabel;
|
---|
189 | private System.Windows.Forms.Label gammaLabel;
|
---|
190 | private System.Windows.Forms.TextBox svmType;
|
---|
191 | private System.Windows.Forms.TextBox kernelType;
|
---|
192 | private System.Windows.Forms.TextBox gamma;
|
---|
193 | protected System.Windows.Forms.TextBox textBox;
|
---|
194 | }
|
---|
195 | }
|
---|