Sha256: 5cc1974c521318398eafc01939b06d74814a854c02f8eaacfa787f1cea4c0230
Contents?: true
Size: 407 Bytes
Versions: 21
Compression:
Stored size: 407 Bytes
Contents
# frozen_string_literal: true module SVMKit module Base # Module for all validation methods in SVMKit. module Splitter # Return the number of splits. # @return [Integer] attr_reader :n_splits # An abstract method for splitting dataset. def split raise NotImplementedError, "#{__method__} has to be implemented in #{self.class}." end end end end
Version data entries
21 entries across 21 versions & 1 rubygems