Question 1 - scoring

I have a question. How should i use the parameter scoring in cross validate ?

from sklearn.dummy import DummyClassifier
from sklearn.model_selection import cross_validate

dummy = DummyClassifier(strategy=‘most_frequent’)
cv_results = cross_validate(dummy,
data, target, cv=10, scoring= )

Hi GermainCid,
The names of the parameters to be used as a list in scoring are given in the sentences in questions 1 and 2 :wink:

Thanks for your time.

If anybody had the same question see the documentation’s scoring