> I'm trying to finding out how to determine which entries are used for each > cross validation test.
Convert the cv object to a list, and you will have the indices of the train and test set in each fold. You can also use cross_validation.test_train_split: http://scikit-learn.org/stable/modules/cross_validation.html HTH, G ------------------------------------------------------------------------------ Try New Relic Now & We'll Send You this Cool Shirt New Relic is the only SaaS-based application performance monitoring service that delivers powerful full stack analytics. Optimize and monitor your browser, app, & servers with just a few lines of code. Try New Relic and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_apr _______________________________________________ Scikit-learn-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
