[560] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using System.Text;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
| 27 | using System.Collections;
|
---|
| 28 | using HeuristicLab.CEDMA.DB.Interfaces;
|
---|
| 29 | using System.Xml;
|
---|
| 30 | using System.Runtime.Serialization;
|
---|
| 31 | using System.IO;
|
---|
[562] | 32 | using HeuristicLab.PluginInfrastructure;
|
---|
[567] | 33 | using HeuristicLab.Logging;
|
---|
| 34 | using HeuristicLab.Data;
|
---|
| 35 | using HeuristicLab.DataAnalysis;
|
---|
| 36 | using HeuristicLab.Charting.Data;
|
---|
| 37 | using System.Drawing;
|
---|
[656] | 38 | using HeuristicLab.GP;
|
---|
[560] | 39 |
|
---|
| 40 | namespace HeuristicLab.CEDMA.Charting {
|
---|
[562] | 41 |
|
---|
| 42 | public class RecordAddedEventArgs : EventArgs {
|
---|
| 43 | private Record record;
|
---|
| 44 | public Record Record { get { return record; } }
|
---|
| 45 | public RecordAddedEventArgs(Record r)
|
---|
| 46 | : base() {
|
---|
| 47 | this.record = r;
|
---|
| 48 | }
|
---|
| 49 | }
|
---|
| 50 |
|
---|
[560] | 51 | public class ResultList : ItemBase {
|
---|
| 52 | private const string cedmaNS = "http://www.heuristiclab.com/cedma/";
|
---|
| 53 | private readonly Entity targetVariablePredicate = new Entity(cedmaNS + "TargetVariable");
|
---|
| 54 | private readonly Entity trainingMAPEPredicate = new Entity(cedmaNS + "MeanAbsolutePercentageErrorTraining");
|
---|
| 55 | private readonly Entity validationMAPEPredicate = new Entity(cedmaNS + "MeanAbsolutePercentageErrorValidation");
|
---|
| 56 | private readonly Entity testMAPEPredicate = new Entity(cedmaNS + "MeanAbsolutePercentageErrorTest");
|
---|
| 57 | private readonly Entity trainingR2Predicate = new Entity(cedmaNS + "CoefficientOfDeterminationTraining");
|
---|
| 58 | private readonly Entity validationR2Predicate = new Entity(cedmaNS + "CoefficientOfDeterminationValidation");
|
---|
| 59 | private readonly Entity testR2Predicate = new Entity(cedmaNS + "CoefficientOfDeterminationTest");
|
---|
| 60 | private readonly Entity treeSizePredicate = new Entity(cedmaNS + "TreeSize");
|
---|
| 61 | private readonly Entity treeHeightPredicate = new Entity(cedmaNS + "TreeHeight");
|
---|
[575] | 62 | private readonly Entity selectionPressurePredicate = new Entity(cedmaNS + "SelectionPressure");
|
---|
| 63 | private readonly Entity rawDataPredicate = new Entity(cedmaNS + "RawData");
|
---|
| 64 | private readonly Entity hasModelPredicate = new Entity(cedmaNS + "Model");
|
---|
[576] | 65 | private readonly Entity generatedByPredicate = new Entity(cedmaNS + "GeneratedBy");
|
---|
[560] | 66 | private readonly Entity anyEntity = new Entity(null);
|
---|
[567] | 67 | private Dictionary<Record, Dataset> datasets;
|
---|
[560] | 68 |
|
---|
| 69 | private IStore store;
|
---|
| 70 | public IStore Store {
|
---|
| 71 | get { return store; }
|
---|
| 72 | set {
|
---|
| 73 | store = value;
|
---|
[561] | 74 | Action reloadList = ReloadList;
|
---|
| 75 | reloadList.BeginInvoke(null, null);
|
---|
[560] | 76 | }
|
---|
| 77 | }
|
---|
[561] | 78 |
|
---|
[575] | 79 | private List<string> variableNames = new List<string>() { Record.TARGET_VARIABLE, Record.TREE_SIZE, Record.TREE_HEIGHT, Record.SELECTIONPRESSURE,
|
---|
[566] | 80 | Record.MAPE_TRAINING, Record.MAPE_VALIDATION, Record.MAPE_TEST,
|
---|
| 81 | Record.R2_TRAINING, Record.R2_VALIDATION, Record.R2_TEST};
|
---|
[560] | 82 | public string[] VariableNames {
|
---|
| 83 | get {
|
---|
| 84 | return variableNames.ToArray();
|
---|
| 85 | }
|
---|
| 86 | }
|
---|
| 87 |
|
---|
[566] | 88 | private Dictionary<Entity, string> predicateToVariableName;
|
---|
| 89 |
|
---|
[562] | 90 | public event EventHandler<RecordAddedEventArgs> OnRecordAdded;
|
---|
[560] | 91 |
|
---|
[562] | 92 | private List<Record> records;
|
---|
[566] | 93 | public List<Record> Records {
|
---|
| 94 | get {
|
---|
| 95 | List<Record> result = new List<Record>();
|
---|
| 96 | lock(records) {
|
---|
| 97 | result.AddRange(records);
|
---|
| 98 | }
|
---|
| 99 | return result;
|
---|
| 100 | }
|
---|
| 101 | }
|
---|
[562] | 102 | private void ReloadList() {
|
---|
[560] | 103 | var results = store.Select(new Statement(anyEntity, new Entity(cedmaNS + "instanceOf"), new Literal("class:GpFunctionTree")))
|
---|
| 104 | .Select(x => store.Select(new SelectFilter(
|
---|
| 105 | new Entity[] { new Entity(x.Subject.Uri) },
|
---|
[575] | 106 | new Entity[] { targetVariablePredicate, treeSizePredicate, treeHeightPredicate, selectionPressurePredicate,
|
---|
[560] | 107 | trainingMAPEPredicate, validationMAPEPredicate, testMAPEPredicate,
|
---|
| 108 | trainingR2Predicate, validationR2Predicate, testR2Predicate },
|
---|
| 109 | new Resource[] { anyEntity })));
|
---|
| 110 |
|
---|
[566] | 111 | Random random = new Random();
|
---|
[560] | 112 | foreach(Statement[] ss in results) {
|
---|
[562] | 113 | if(ss.Length > 0) {
|
---|
[567] | 114 | Record r = new Record(this, ss[0].Subject.Uri);
|
---|
[566] | 115 | r.Set(Record.X_JITTER, random.NextDouble() * 2.0 - 1.0);
|
---|
| 116 | r.Set(Record.Y_JITTER, random.NextDouble() * 2.0 - 1.0);
|
---|
[561] | 117 | foreach(Statement s in ss) {
|
---|
[566] | 118 | string varName;
|
---|
| 119 | predicateToVariableName.TryGetValue(s.Predicate, out varName);
|
---|
| 120 | if(varName != null) {
|
---|
| 121 | if(varName == Record.TREE_HEIGHT || varName == Record.TREE_SIZE || varName == Record.TARGET_VARIABLE) {
|
---|
| 122 | r.Set(varName, (double)(int)((Literal)s.Property).Value);
|
---|
| 123 | } else {
|
---|
| 124 | r.Set(varName, (double)((Literal)s.Property).Value);
|
---|
| 125 | }
|
---|
[561] | 126 | }
|
---|
[560] | 127 | }
|
---|
[566] | 128 | lock(records) {
|
---|
| 129 | records.Add(r);
|
---|
| 130 | }
|
---|
[562] | 131 | FireRecordAdded(r);
|
---|
[560] | 132 | }
|
---|
| 133 | }
|
---|
[566] | 134 | FireChanged();
|
---|
[560] | 135 | }
|
---|
| 136 |
|
---|
[562] | 137 | private void FireRecordAdded(Record r) {
|
---|
| 138 | if(OnRecordAdded != null) OnRecordAdded(this, new RecordAddedEventArgs(r));
|
---|
[560] | 139 | }
|
---|
| 140 |
|
---|
| 141 | public ResultList()
|
---|
| 142 | : base() {
|
---|
[562] | 143 | records = new List<Record>();
|
---|
[567] | 144 | datasets = new Dictionary<Record, Dataset>();
|
---|
[566] | 145 | predicateToVariableName = new Dictionary<Entity, string>();
|
---|
| 146 | predicateToVariableName[targetVariablePredicate] = Record.TARGET_VARIABLE;
|
---|
| 147 | predicateToVariableName[treeSizePredicate] = Record.TREE_SIZE;
|
---|
| 148 | predicateToVariableName[treeHeightPredicate] = Record.TREE_HEIGHT;
|
---|
[575] | 149 | predicateToVariableName[selectionPressurePredicate] = Record.SELECTIONPRESSURE;
|
---|
[566] | 150 | predicateToVariableName[trainingMAPEPredicate] = Record.MAPE_TRAINING;
|
---|
| 151 | predicateToVariableName[validationMAPEPredicate] = Record.MAPE_VALIDATION;
|
---|
| 152 | predicateToVariableName[testMAPEPredicate] = Record.MAPE_TEST;
|
---|
| 153 | predicateToVariableName[trainingR2Predicate] = Record.R2_TRAINING;
|
---|
| 154 | predicateToVariableName[validationR2Predicate] = Record.R2_VALIDATION;
|
---|
| 155 | predicateToVariableName[testR2Predicate] = Record.R2_TEST;
|
---|
[560] | 156 | }
|
---|
| 157 |
|
---|
| 158 | public override IView CreateView() {
|
---|
| 159 | return new ResultListView(this);
|
---|
| 160 | }
|
---|
| 161 |
|
---|
[567] | 162 | internal void OpenModel(Record record) {
|
---|
| 163 | IList<Statement> modelResults = store.Select(new Statement(new Entity(record.Uri), rawDataPredicate, anyEntity));
|
---|
| 164 | if(modelResults.Count == 1) {
|
---|
| 165 | string rawData = ((SerializedLiteral)modelResults[0].Property).RawData;
|
---|
[562] | 166 | XmlDocument doc = new XmlDocument();
|
---|
| 167 | doc.LoadXml(rawData);
|
---|
[567] | 168 | IFunctionTree tree = (IFunctionTree)PersistenceManager.Restore(doc.ChildNodes[1], new Dictionary<Guid, IStorable>());
|
---|
| 169 | int targetVariable = (int)record.Get(Record.TARGET_VARIABLE);
|
---|
| 170 | Dataset dataset = GetDataset(record);
|
---|
| 171 |
|
---|
[576] | 172 | ModelView modelView = new ModelView(record, dataset, tree, targetVariable);
|
---|
[567] | 173 | PluginManager.ControlManager.ShowControl(modelView);
|
---|
[561] | 174 | }
|
---|
[560] | 175 | }
|
---|
[567] | 176 |
|
---|
| 177 | private Dataset GetDataset(Record record) {
|
---|
| 178 | if(!datasets.ContainsKey(record)) {
|
---|
| 179 | IList<Statement> result = store.Select(new Statement(anyEntity, hasModelPredicate, new Entity(record.Uri)));
|
---|
| 180 | if(result.Count == 1) {
|
---|
| 181 | IList<Statement> datasetResult = store.Select(new Statement(result[0].Subject, rawDataPredicate, anyEntity));
|
---|
| 182 | if(datasetResult.Count == 1) {
|
---|
| 183 | string rawData = ((SerializedLiteral)datasetResult[0].Property).RawData;
|
---|
| 184 | XmlDocument doc = new XmlDocument();
|
---|
| 185 | doc.LoadXml(rawData);
|
---|
| 186 | Dataset dataset = (Dataset)PersistenceManager.Restore(doc.ChildNodes[1], new Dictionary<Guid, IStorable>());
|
---|
| 187 | datasets.Add(record, dataset);
|
---|
| 188 | }
|
---|
| 189 | }
|
---|
| 190 | }
|
---|
| 191 | return datasets[record];
|
---|
| 192 | }
|
---|
[576] | 193 |
|
---|
| 194 | internal void OpenAlgorithm(Record record) {
|
---|
| 195 | IList<Statement> generatedBy = store.Select(new Statement(new Entity(record.Uri), generatedByPredicate, anyEntity));
|
---|
| 196 | if(generatedBy.Count == 1) {
|
---|
| 197 | IList<Statement> algoResult = store.Select(new Statement((Entity)generatedBy[0].Property, rawDataPredicate, anyEntity));
|
---|
| 198 | if(algoResult.Count == 1) {
|
---|
| 199 | string rawData = ((SerializedLiteral)algoResult[0].Property).RawData;
|
---|
| 200 | XmlDocument doc = new XmlDocument();
|
---|
| 201 | doc.LoadXml(rawData);
|
---|
| 202 | IItem algo = (IItem)PersistenceManager.Restore(doc.ChildNodes[1], new Dictionary<Guid, IStorable>());
|
---|
| 203 | PluginManager.ControlManager.ShowControl(algo.CreateView());
|
---|
| 204 | }
|
---|
| 205 | }
|
---|
| 206 | }
|
---|
[560] | 207 | }
|
---|
| 208 | }
|
---|