You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can I find out which were the parameters values used to do the classification, looking at the scripts, it seems to me that the program tests some values and choose the best suitable:
elif inClassifier == 'KNN':
from sklearn import neighbors
**param_grid = dict(n_neighbors=np.arange(1, 20, 4))**
if 'param_algo' in locals():
classifier = neighbors.KNeighborsClassifier(
**param_algo)
else:
classifier = neighbors.KNeighborsClassifier()
How can I find out which value was used in my classification? I made it by default
The text was updated successfully, but these errors were encountered:
How can I find out which were the parameters values used to do the classification, looking at the scripts, it seems to me that the program tests some values and choose the best suitable:
elif inClassifier == 'KNN':
from sklearn import neighbors
How can I find out which value was used in my classification? I made it by default
The text was updated successfully, but these errors were encountered: