Upgrade to Pro — share decks privately, control downloads, hide ads and more …

PyCon India - Commodity Machine Learning; past, present and future

Andreas Mueller
September 25, 2016
2.6k

PyCon India - Commodity Machine Learning; past, present and future

PyCon India 2016 keynote

Andreas Mueller

September 25, 2016
Tweet

Transcript

  1. +

  2. from sklearn.cross_validation import KFold cv = KFold(n_samples, n_folds) for train,

    test in cv: ... from sklearn.model_selection import KFold cv = KFold(n_folds) for train, test in cv.split(X, y): ...
  3. 40