What does --passes do in Python VowpalWabbit?
问题 The --passes flag is the number of training passes. But it's unclear what the notion of passes means when training a Python VW model, within a for loop for example. e.g. If I'm training a model example by example within a for-loop like this: for line in train: model.learn(line) How could there be multiple passes if each training sample is learned from only once? 回答1: In Python the passes option only affect when the inbuilt driver is used. This only occurs when a data file and or passes is