Relative Content

Tag Archive for machine-learningscikit-learnclassificationsvmsvc

How to get the model parameter for one vs rest SVC() using python?

I’ve tried to make a onvsrest classiffication model using decision_function_shape= ovr, but when i changed it to decision_function_shape= ovo, it gave me the same result as ovr. Turn out i read that svc() is using ovo as it base wheter it initiated as ovr or ovo. So how can i turn my code so it give me an ovr result?