Sha256: 68280fc7b8dde7877d0efc1fbe159ec7f50754859b32aed09d7256c0ff4e17dd

Contents?: true

Size: 532 Bytes

Versions: 1

Compression:

Stored size: 532 Bytes

Contents

module Libsvm
  # This file only contains documentation comments. See
  # ext/libsvm/libsvm.c for implementation.

  # Represents a training set (alternatively called problem).
  #
  # In contains labels and examples in equal number.
  #
  # This class represents the struct
  # svm_problem[https://github.com/cjlin1/libsvm/blob/master/README#L319].
  class Problem

    # @!attribute [r] l
    #
    # The number of labels and examples in this traning set. (The name
    # is lower case L.)
    #
    # @return [Integer]
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rb-libsvm-1.3.0 lib/libsvm/problem.rb