Changeset 5692 for trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.LibSVM/1.6.3/LibSVM-1.6.3/Model.cs
- Timestamp:
- 03/15/11 15:51:55 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.ExtLibs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.ExtLibs
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
/branches/DataAnalysis Refactoring/HeuristicLab.ExtLibs merged eligible /branches/CloningRefactoring/HeuristicLab.ExtLibs 4656-4721 /branches/DataAnalysis/HeuristicLab.ExtLibs 4458-4459,4462,4464 /branches/GP.Symbols (TimeLag, Diff, Integral)/HeuristicLab.ExtLibs 5060 /branches/NET40/sources/HeuristicLab.ExtLibs 5138-5162 /branches/ParallelEngine/HeuristicLab.ExtLibs 5175-5192 /branches/SuccessProgressAnalysis/HeuristicLab.ExtLibs 5370-5682
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
-
trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.LibSVM/1.6.3/LibSVM-1.6.3/Model.cs
r4545 r5692 31 31 private int _numberOfClasses; 32 32 private int _supportVectorCount; 33 private int[] _supportVectorIndizes;34 33 private Node[][] _supportVectors; 35 34 private double[][] _supportVectorCoefficients; … … 77 76 set { 78 77 _supportVectorCount = value; 79 }80 }81 82 /// <summary>83 /// Indizes of support vectors identified in the training.84 /// </summary>85 public int[] SupportVectorIndizes {86 get {87 return _supportVectorIndizes;88 }89 set {90 _supportVectorIndizes = value;91 78 } 92 79 } … … 215 202 model.ClassLabels = null; 216 203 model.NumberOfSVPerClass = null; 217 model.SupportVectorIndizes = new int[0];218 204 219 205 bool headerFinished = false; … … 416 402 output.Write("nr_sv"); 417 403 for (int i = 0; i < nr_class; i++) 418 output.Write(" " + model.NumberOfSVPerClass[i] .ToString("r"));404 output.Write(" " + model.NumberOfSVPerClass[i]); 419 405 output.Write(Environment.NewLine); 420 406 }
Note: See TracChangeset
for help on using the changeset viewer.