Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/14/09 19:56:04 (15 years ago)
Author:
gkronber
Message:
  • introduced a variablename to index mapping for SVM models (to make sure we can use the model for prediction in the model analyzer)
  • added support to enable and disable algorithms in the dispatcher and removed DispatcherBase
  • fixed bugs when calculating variable impacts and reading the final model of GP algorithms

#722 (IModel should provide a Predict() method to get predicted values for an input vector)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Server/3.3/DispatcherView.Designer.cs

    r2258 r2290  
    2929      this.inputVariablesLabel = new System.Windows.Forms.Label();
    3030      this.splitContainer = new System.Windows.Forms.SplitContainer();
     31      this.algorithmsListBox = new System.Windows.Forms.CheckedListBox();
     32      this.algorithmsLabel = new System.Windows.Forms.Label();
    3133      this.setAllButton = new System.Windows.Forms.Button();
    3234      this.splitContainer.Panel1.SuspendLayout();
     
    4244      this.targetVariableList.FormattingEnabled = true;
    4345      this.targetVariableList.HorizontalScrollbar = true;
    44       this.targetVariableList.Location = new System.Drawing.Point(6, 16);
     46      this.targetVariableList.Location = new System.Drawing.Point(6, 181);
    4547      this.targetVariableList.Name = "targetVariableList";
    46       this.targetVariableList.Size = new System.Drawing.Size(193, 454);
     48      this.targetVariableList.Size = new System.Drawing.Size(193, 289);
    4749      this.targetVariableList.TabIndex = 0;
    4850      this.targetVariableList.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.targetVariableList_ItemCheck);
     
    6567      //
    6668      this.targetVariablesLabel.AutoSize = true;
    67       this.targetVariablesLabel.Location = new System.Drawing.Point(3, 0);
     69      this.targetVariablesLabel.Location = new System.Drawing.Point(3, 165);
    6870      this.targetVariablesLabel.Name = "targetVariablesLabel";
    6971      this.targetVariablesLabel.Size = new System.Drawing.Size(86, 13);
     
    8890      // splitContainer.Panel1
    8991      //
     92      this.splitContainer.Panel1.Controls.Add(this.algorithmsListBox);
     93      this.splitContainer.Panel1.Controls.Add(this.algorithmsLabel);
    9094      this.splitContainer.Panel1.Controls.Add(this.targetVariablesLabel);
    9195      this.splitContainer.Panel1.Controls.Add(this.targetVariableList);
     
    100104      this.splitContainer.SplitterWidth = 1;
    101105      this.splitContainer.TabIndex = 4;
     106      //
     107      // algorithmsListBox
     108      //
     109      this.algorithmsListBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     110                  | System.Windows.Forms.AnchorStyles.Right)));
     111      this.algorithmsListBox.FormattingEnabled = true;
     112      this.algorithmsListBox.HorizontalScrollbar = true;
     113      this.algorithmsListBox.Location = new System.Drawing.Point(6, 16);
     114      this.algorithmsListBox.Name = "algorithmsListBox";
     115      this.algorithmsListBox.Size = new System.Drawing.Size(193, 139);
     116      this.algorithmsListBox.TabIndex = 4;
     117      this.algorithmsListBox.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.algorithmsListBox_ItemCheck);
     118      //
     119      // algorithmsLabel
     120      //
     121      this.algorithmsLabel.AutoSize = true;
     122      this.algorithmsLabel.Location = new System.Drawing.Point(3, 0);
     123      this.algorithmsLabel.Name = "algorithmsLabel";
     124      this.algorithmsLabel.Size = new System.Drawing.Size(58, 13);
     125      this.algorithmsLabel.TabIndex = 3;
     126      this.algorithmsLabel.Text = "Algorithms:";
    102127      //
    103128      // setAllButton
     
    136161    private System.Windows.Forms.SplitContainer splitContainer;
    137162    private System.Windows.Forms.Button setAllButton;
     163    private System.Windows.Forms.CheckedListBox algorithmsListBox;
     164    private System.Windows.Forms.Label algorithmsLabel;
    138165  }
    139166}
Note: See TracChangeset for help on using the changeset viewer.