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
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