class MachineLearner::Learner
学習器クラス
Public Instance Methods
learn(datas, ds)
click to toggle source
トレーニングデータを元に学習を行う @param datas [Array<DataSet>] トレーニングデータセット @param ds [Array<Float>] 各データセットの重み @return [Array<Boolean>] 学習後の識別結果
# File lib/machine_learner/learner.rb, line 37 def learn(datas, ds) raise NotImplementedError.new end