Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/18/12 13:45:43 (12 years ago)
Author:
spimming
Message:

#1807:

  • scenario description added
  • page size fixed
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3/SelectAnalysisPage.cs

    r7824 r8033  
    33namespace HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard {
    44  public partial class SelectAnalysisPage : HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.WizardPage {
     5    private const string descMediumScenario = "Support Vector Regression \r\n" +
     6                                               "Nu: 0.1 ... 0.9 \r\n" +
     7                                               "Cost: 0.03125 ... 32768 \r\n" +
     8                                               "Gama: 0.0000610352 ... 64 \r\n" +
     9                                               "\r\n" +
     10                                               "Random Forest Regression \r\n" +
     11                                               "R: 0.1 ... 0.7 \r\n" +
     12                                               "Number of trees: 250 \r\n" +
     13                                               "\r\n" +
     14                                               "Neural Network Regression \r\n" +
     15                                               "Decay: 0.001 ... 100 \r\n" +
     16                                               "NodesInFirstHiddenLayer: 1 ... 100 \r\n" +
     17                                               "\r\n" +
     18                                               "Offspring Selection Genetic Algorithm \r\n" +
     19                                               "ComparisonFactorLowerBound: 1 \r\n" +
     20                                               "MaximumEvaluatedSolutions: 500000 \r\n" +
     21                                               "MaximumGenerations: 100 \r\n" +
     22                                               "MutationProbability: 0.15 \r\n" +
     23                                               "PopulationSize: 500 \r\n" +
     24                                               "Max. Tree Depth: 8; 12; 17 \r\n" +
     25                                               "Max. Tree Length: 25; 125; 250 \r\n";
     26
     27
    528    private DataAnalysisWizardContext context;
    629    public DataAnalysisWizardContext Context {
     
    1134      InitializeComponent();
    1235      this.context = context;
     36      txtMediumAnalysis.Text = descMediumScenario;
    1337    }
    1438
     
    2751        context.SelectedAnalysis = rbLarge.Text;
    2852        e.NewPage = "WizardPage";
    29       } else if (rbCustom.Checked) {
    30         context.SelectedAnalysis = rbCustom.Text;
    31         e.NewPage = "WizardPage";
    32       } else {
     53      }
     54        //else if (rbCustom.Checked) {
     55        //  context.SelectedAnalysis = rbCustom.Text;
     56        //  e.NewPage = "WizardPage";
     57        //}
     58      else {
    3359        throw new SystemException("Undefined data analysis selected.");
    3460      }
Note: See TracChangeset for help on using the changeset viewer.