Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorMachineUtil.cs @ 5624

Last change on this file since 5624 was 5624, checked in by gkronber, 13 years ago

#1418 renamed interface for interpreter, worked on solutions and models and implemented SVM regression.

File size: 2.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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.Collections.Generic;
23using System.Linq;
24using HeuristicLab.Problems.DataAnalysis;
25
26namespace HeuristicLab.Algorithms.DataAnalysis {
27  public class SupportVectorMachineUtil {
28    /// <summary>
29    /// Transforms <paramref name="problemData"/> into a data structure as needed by libSVM.
30    /// </summary>
31    /// <param name="problemData">The problem data to transform</param>
32    /// <param name="rowIndices">The rows of the dataset that should be contained in the resulting SVM-problem</param>
33    /// <returns>A problem data type that can be used to train a support vector machine.</returns>
34    public static SVM.Problem CreateSvmProblem(Dataset dataset, string targetVariable, IEnumerable<string> inputVariables, IEnumerable<int> rowIndices) {
35      double[] targetVector =
36        dataset.GetEnumeratedVariableValues(targetVariable, rowIndices)
37        .ToArray();
38
39      SVM.Node[][] nodes = new SVM.Node[targetVector.Length][];
40      List<SVM.Node> tempRow;
41      int maxNodeIndex = 0;
42      int svmProblemRowIndex = 0;
43      foreach (int row in rowIndices) {
44        tempRow = new List<SVM.Node>();
45        foreach (var inputVariable in inputVariables) {
46          int col = dataset.GetVariableIndex(inputVariable);
47          double value = dataset[row, col];
48          if (!double.IsNaN(value)) {
49            int nodeIndex = col + 1; // make sure the smallest nodeIndex is 1 (libSVM convention)
50            tempRow.Add(new SVM.Node(nodeIndex, value));
51            if (nodeIndex > maxNodeIndex) maxNodeIndex = nodeIndex;
52          }
53        }
54        nodes[svmProblemRowIndex++] = tempRow.OrderBy(x => x.Index).ToArray(); // make sure the values are sorted by node index
55      }
56
57      return new SVM.Problem(targetVector.Length, targetVector, nodes, maxNodeIndex);
58    }
59  }
60}
Note: See TracBrowser for help on using the repository browser.