rumale/lib/svmkit/base/base_estimator.rb

12 lines
237 B
Ruby

module SVMKit
# This module consists of basic mix-in classes.
module Base
# Base module for all estimators in SVMKit.
module BaseEstimator
# Parameters for this estimator.
attr_accessor :params
end
end
end