Changeset 1352
- Timestamp:
- 03/17/09 11:01:59 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.CEDMA.DB.Interfaces/Ontology.cs
r1287 r1352 110 110 get { return new Entity(CedmaNameSpace + "TargetVariable"); } 111 111 } 112 public static Entity AlgorithmName { 113 get { return new Entity(CedmaNameSpace + "AlgorithmName"); } 114 } 112 115 public static Entity TrainingMeanSquaredError { 113 116 get { return new Entity(CedmaNameSpace + "TrainingMeanSquaredError"); } … … 179 182 return new List<Statement> { 180 183 new Statement(TargetVariable, PredicateInstanceOf, TypeCategoricalAttribute), 184 new Statement(AlgorithmName, PredicateInstanceOf, TypeCategoricalAttribute), 181 185 new Statement(TrainingMeanSquaredError, PredicateInstanceOf, TypeOrdinalAttribute), 182 186 new Statement(TrainingMeanSquaredError, PredicateInstanceOf, TypeQualityAttribute), -
trunk/sources/HeuristicLab.CEDMA.Server/Executer.cs
r1287 r1352 132 132 store.Add(new Statement(finishedExecution.DataSetEntity, Ontology.PredicateHasModel, model)); 133 133 StoreModelAttribute(model, Ontology.TargetVariable, finishedExecution.TargetVariable); 134 StoreModelAttribute(model, Ontology.AlgorithmName, finishedExecution.Description); 134 135 Scope bestModelScope = finishedEngine.GlobalScope.GetVariableValue<Scope>("BestValidationSolution", false); 135 136 StoreModelVariable(model, Ontology.TrainingMeanSquaredError, bestModelScope, "Quality");
Note: See TracChangeset
for help on using the changeset viewer.