partial_fit scikit-learn 方法的含义
Meaning of partial_fit method of scikit-learn
很好奇运行scikit-learn的partial_fit
方法是对应一次迭代,一步,还是一个epoch?我很困惑。
它根据the documentation运行一个epoch。
Perform one epoch of stochastic gradient descent on given samples.
这仅适用于某些训练方法,例如随机梯度下降 (SGD),它对训练数据(epoch)进行多次传递。
很好奇运行scikit-learn的partial_fit
方法是对应一次迭代,一步,还是一个epoch?我很困惑。
它根据the documentation运行一个epoch。
Perform one epoch of stochastic gradient descent on given samples.
这仅适用于某些训练方法,例如随机梯度下降 (SGD),它对训练数据(epoch)进行多次传递。