Free cookie consent management tool by TermsFeed Policy Generator

Changeset 2080


Ignore:
Timestamp:
06/22/09 17:46:22 (15 years ago)
Author:
gkronber
Message:

Fixed a small bug (description of algorithm instead of name was stored as algorithm name in the results). #650 (IAlgorithm and derived interfaces should provide properties to retrieve results)

File:
1 edited

Legend:

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

    r2057 r2080  
    8787      statements.Add(new Statement(modelEntity, Ontology.InstanceOf, Ontology.TypeModel));
    8888      statements.Add(new Statement(modelEntity, Ontology.TargetVariable, new Literal(model.TargetVariable)));
    89       statements.Add(new Statement(modelEntity, Ontology.Name, new Literal(finishedAlgorithm.Description)));
     89      statements.Add(new Statement(modelEntity, Ontology.Name, new Literal(finishedAlgorithm.Name)));
    9090     
    9191      statements.Add(new Statement(modelEntity, Ontology.TrainingMeanSquaredError, new Literal(model.TrainingMeanSquaredError)));
Note: See TracChangeset for help on using the changeset viewer.