5

I have started a grid search for SVM parameters in a rather wide range.

The most of the search space have been calculated and now I got one last process, which goes already for 100 hours.

I'd like to see the results, that already have been calculated. Is there any way to do it? Thanks in advance!

Kamerer
  • 77
  • 1
  • 1
  • 7

2 Answers2

5

Unfortunately the current GridSearchCV implementation has no async / background mode. However you can implement your own custom scorer object to save the partial results to a database or some files on the disk to monitor the progress.

Matt
  • 17,290
  • 7
  • 57
  • 71
ogrisel
  • 39,309
  • 12
  • 116
  • 125
3

You can set the verbose option to a value >0. That will at least give you the results on stdout.

Andreas Mueller
  • 27,470
  • 8
  • 62
  • 74
  • Thanks, that will be useful, but the process is already running. – Kamerer Jan 09 '14 at 01:11
  • Just to add: if you are using IPython Notebook, the output is in the IPython terminal window, not in the interactive session. – arun Apr 03 '16 at 01:40