Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorParameterTuningEvaluator.cs @ 11571

Last change on this file since 11571 was 11571, checked in by bburlacu, 9 years ago

#2276: Commit initial version of IDataset interface and code refactoring.

File size: 2.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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
22using System;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Encodings.RealVectorEncoding;
27using HeuristicLab.Operators;
28using HeuristicLab.Optimization;
29using HeuristicLab.Parameters;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31using HeuristicLab.Problems.DataAnalysis;
32using LibSVM;
33
34namespace HeuristicLab.Algorithms.DataAnalysis {
35  [Item("SupportVectorParameterTuningEvaluator", "")]
36  [StorableClass]
37  public class SupportVectorParameterTuningEvaluator : InstrumentedOperator, ISingleObjectiveEvaluator {
38    public ILookupParameter<DoubleValue> QualityParameter {
39      get { return (ILookupParameter<DoubleValue>)Parameters["Quality"]; }
40    }
41
42    [StorableConstructor]
43    protected SupportVectorParameterTuningEvaluator(bool deserializing) : base(deserializing) { }
44    protected SupportVectorParameterTuningEvaluator(SupportVectorParameterTuningEvaluator original, Cloner cloner) : base(original, cloner) { }
45
46    public SupportVectorParameterTuningEvaluator()
47      : base() {
48      Parameters.Add(new LookupParameter<RealVector>("Point"));
49      Parameters.Add(new LookupParameter<IRegressionProblemData>("ProblemData"));
50      Parameters.Add(new LookupParameter<DoubleValue>("Quality"));
51    }
52
53    public override IDeepCloneable Clone(Cloner cloner) {
54      return new SupportVectorParameterTuningEvaluator(this, cloner);
55    }
56
57    public override IOperation InstrumentedApply() {
58      var problemData = (IRegressionProblemData)Parameters["ProblemData"].ActualValue;
59      var p = (RealVector)Parameters["Point"].ActualValue;
60      var parameters = new svm_parameter {
61        C = Math.Exp(p[0]),
62        gamma = Math.Exp(p[1]),
63        p = Math.Exp(p[2]),
64        eps = 0.001,
65        svm_type = svm_parameter.EPSILON_SVR,
66        kernel_type = svm_parameter.RBF
67      };
68
69      var cvLoss = SupportVectorMachineUtil.CrossValidate(problemData, parameters, 5, false);
70      QualityParameter.ActualValue = new DoubleValue(cvLoss);
71      return base.InstrumentedApply();
72    }
73
74  }
75}
Note: See TracBrowser for help on using the repository browser.