Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.1/HeuristicLab.Problems.DataAnalysis/3.3/SupportVectorMachine/SupportVectorMachineUtil.cs @ 13398

Last change on this file since 13398 was 4068, checked in by swagner, 14 years ago

Sorted usings and removed unused usings in entire solution (#1094)

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