Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/02/12 10:55:26 (12 years ago)
Author:
sforsten
Message:

#1784:

  • added Problem.Instances.Classification project
  • added classification problem instances
  • added a class Transformer to Problem.Instances
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ProblemInstancesRegressionAndClassification/HeuristicLab.Problems.Instances/3.3/Types/RegressionData.cs

    r7603 r7682  
    2020#endregion
    2121
    22 
    23 using System.Collections.Generic;
    2422namespace HeuristicLab.Problems.Instances {
    2523
     
    3634    /// </summary>
    3735    public string Description { get; set; }
    38 
     36    /// <summary>
     37    /// The target variable of a problem.
     38    /// </summary>
    3939    public string TargetVariable { get; set; }
    40 
    41     public IEnumerable<string> InputVariables { get; set; }
    42 
    43     public IEnumerable<string> AllowedInputVariables { get; set; }
    44 
     40    /// <summary>
     41    /// All variables which are in the problem.
     42    /// </summary>
     43    public string[] InputVariables { get; set; }
     44    /// <summary>
     45    /// All variables which shall be used to solve the problem.
     46    /// (Variables wich are not contained by AllowedInputVariables won't be checked initialy, when the problem is created.)
     47    /// </summary>
     48    public string[] AllowedInputVariables { get; set; }
     49    /// <summary>
     50    /// Start of the trainings partition
     51    /// </summary>
    4552    public int TrainingPartitionStart { get; set; }
     53    /// <summary>
     54    /// End of the trainings partition
     55    /// </summary>
    4656    public int TrainingPartitionEnd { get; set; }
    47 
     57    /// <summary>
     58    /// Start of the test partition
     59    /// </summary>
    4860    public int TestPartitionStart { get; set; }
     61    /// <summary>
     62    /// End of the test partition
     63    /// </summary>
    4964    public int TestPartitionEnd { get; set; }
    50 
     65    /// <summary>
     66    /// Contains all the values of the variables
     67    /// </summary>
    5168    public double[,] Values { get; set; }
    5269  }
Note: See TracChangeset for help on using the changeset viewer.