I am using GridSearch from sklearn to optimize parameters of the classifier. There is a lot of data, so the whole process of optimization takes a while
GridSearch
sklearn
Set the verbose parameter in GridSearchCV to a positive number (the greater the number the more detail you will get). For instance:
verbose
GridSearchCV
GridSearchCV(clf, param_grid, cv=cv, scoring='accuracy', verbose=10)