Visualizations now work for NN and GP learners.
Mysterious bug has appeared in GP. The scikit-learn stops providing
uncertainty predictions after being fit for a certain number of times.
Commiting so I can change branch and investigate.
Loading branch information...
1 parent
ecffda8commit 97d5b23358bd8bf19ba818588a3e5d279809fc4amichaelhush
committed
Nov 30, 2016
log.info('Controller finished. Closing down M-LOOP. Please wait a moment...')
except ControllerInterrupt:
self.log.warning('Controller ended by interruption.')
+ '''
except (KeyboardInterrupt,SystemExit):
log.warning('!!! Do not give the interrupt signal again !!! \n M-LOOP stopped with keyboard interupt or system exit. Please wait at least 1 minute for the threads to safely shut down. \n ')
log.warning('Closing down controller.')
@@ -347,6 +348,7 @@ def optimize(self):
self.log.warning('Safely shut down. Below are results found before exception.')
self.print_results()
raise
+'''
self._shut_down()
self.print_results()
self.log.info('M-LOOP Done.')
@@ -539,6 +541,7 @@ class MachineLearnerController(Controller):
0 comments on commit
97d5b23