Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/11/09 15:43:58 (15 years ago)
Author:
gkronber
Message:
  • Fixed bugs in the SQL comact backend for HL.Modeling.
  • Readded dispatching of stochastic algorithms in CEDMA dispatcher after it was deactivated unintentionally
  • Show algorithm name as model attribute in CEDMA results.

#712.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Core/3.3/Results.cs

    r2223 r2275  
    9494        modelEntry.Set("PersistedData", database.GetModelData(model));
    9595        modelEntry.Set("TargetVariable", model.TargetVariable.Name);
     96        modelEntry.Set("Algorithm", model.Algorithm.Name);
    9697        Dictionary<HeuristicLab.Modeling.Database.IVariable, ResultsEntry> inputVariableResultsEntries =
    9798          new Dictionary<HeuristicLab.Modeling.Database.IVariable, ResultsEntry>();
     
    123124    private void LoadModelAttributes() {
    124125      ordinalVariables = database.GetAllResults().Select(r => r.Name).ToArray();
    125       categoricalVariables = new string[] { "TargetVariable" };
     126      categoricalVariables = new string[] { "TargetVariable", "Algorithm" };
    126127    }
    127128
Note: See TracChangeset for help on using the changeset viewer.