I am getting the following output while computing the best estimator in grid Search -
SVC(C=5.0, break_ties=False, cache_size=200, class_weight=None, coef0=0.0,
decision_function_shape=‘ovr’, degree=3, gamma=‘scale’, kernel=‘rbf’,
max_iter=-1, probability=False, random_state=None, shrinking=True,
tol=0.001, verbose=False)
Is it fine as it is completely opposite to what is shown in the video?
Also, the accuracy I got using cross_val_score(svc,X,Y,scoring = ‘accuracy’,cv = 5).mean()
was 0.96 while the in the video it was very low around 42 %.