Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/20/10 16:47:12 (14 years ago)
Author:
mkommend
Message:

added calculation and view for support vectors (ticket #1009)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.LibSVM/1.6.3/LibSVM-1.6.3/Model.cs

    r2645 r3858  
    3333    private int _numberOfClasses;
    3434    private int _supportVectorCount;
     35    private int[] _supportVectorIndizes;
    3536    private Node[][] _supportVectors;
    3637    private double[][] _supportVectorCoefficients;
     
    7879      set {
    7980        _supportVectorCount = value;
     81      }
     82    }
     83
     84    /// <summary>
     85    /// Indizes of support vectors identified in the training.
     86    /// </summary>
     87    public int[] SupportVectorIndizes {
     88      get {
     89        return _supportVectorIndizes;
     90      }
     91      set {
     92        _supportVectorIndizes = value;
    8093      }
    8194    }
Note: See TracChangeset for help on using the changeset viewer.