Re: [scikit-learn] Predictive probability from cross_validate

2019-08-12 Thread Guillaume LemaƮtre
cross_validate should not be used to make predictions but to evaluate the performance, the parameter, etc of models. You probably want to check cross_val_predict to get the prediction. However, be aware of what it involves: https://scikit-learn.org/stable/modules/cross_validation.html#obtaining-pre

Re: [scikit-learn] Predictive probability from cross_validate

2019-08-12 Thread charujing123
hi this function is exactly what i wanted. However, the description of this function contained this: Passing these predictions into an evaluation metric may not be a valid way to measure generalization performance. Could i use this prediction to calculate the accuracy? I am not sure after seei