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/ExecuterView.Designer.cs

    r2125 r2290  
    2727      this.maxJobsLabel = new System.Windows.Forms.Label();
    2828      this.maxActiveJobs = new System.Windows.Forms.NumericUpDown();
     29      this.finishedLabel = new System.Windows.Forms.Label();
     30      this.finishedTextBox = new System.Windows.Forms.TextBox();
    2931      ((System.ComponentModel.ISupportInitialize)(this.maxActiveJobs)).BeginInit();
    3032      this.SuspendLayout();
     
    3638                  | System.Windows.Forms.AnchorStyles.Right)));
    3739      this.jobsList.FormattingEnabled = true;
    38       this.jobsList.Location = new System.Drawing.Point(3, 29);
     40      this.jobsList.Location = new System.Drawing.Point(3, 55);
    3941      this.jobsList.Name = "jobsList";
    40       this.jobsList.Size = new System.Drawing.Size(327, 264);
     42      this.jobsList.Size = new System.Drawing.Size(327, 238);
    4143      this.jobsList.TabIndex = 0;
    4244      //
     
    5254      // maxActiveJobs
    5355      //
    54       this.maxActiveJobs.Location = new System.Drawing.Point(98, 3);
     56      this.maxActiveJobs.Location = new System.Drawing.Point(117, 3);
    5557      this.maxActiveJobs.Maximum = new decimal(new int[] {
    5658            200,
     
    6365      this.maxActiveJobs.ValueChanged += new System.EventHandler(this.maxActiveJobs_ValueChanged);
    6466      //
     67      // finishedLabel
     68      //
     69      this.finishedLabel.AutoSize = true;
     70      this.finishedLabel.Location = new System.Drawing.Point(5, 32);
     71      this.finishedLabel.Name = "finishedLabel";
     72      this.finishedLabel.Size = new System.Drawing.Size(106, 13);
     73      this.finishedLabel.TabIndex = 3;
     74      this.finishedLabel.Text = "Stored models (new):";
     75      //
     76      // finishedTextBox
     77      //
     78      this.finishedTextBox.Location = new System.Drawing.Point(117, 29);
     79      this.finishedTextBox.Name = "finishedTextBox";
     80      this.finishedTextBox.ReadOnly = true;
     81      this.finishedTextBox.Size = new System.Drawing.Size(100, 20);
     82      this.finishedTextBox.TabIndex = 4;
     83      //
    6584      // ExecuterView
    6685      //
    6786      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    6887      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     88      this.Controls.Add(this.finishedTextBox);
     89      this.Controls.Add(this.finishedLabel);
    6990      this.Controls.Add(this.maxActiveJobs);
    7091      this.Controls.Add(this.maxJobsLabel);
     
    83104    private System.Windows.Forms.Label maxJobsLabel;
    84105    private System.Windows.Forms.NumericUpDown maxActiveJobs;
     106    private System.Windows.Forms.Label finishedLabel;
     107    private System.Windows.Forms.TextBox finishedTextBox;
    85108  }
    86109}
Note: See TracChangeset for help on using the changeset viewer.