Browse code

add example of runner.live_info to example notebook

Joseph Weston authored on 15/02/2018 17:44:27
Showing 1 changed files
... ...
@@ -105,7 +105,8 @@
105 105
    "source": [
106 106
     "# The end condition is when the \"loss\" is less than 0.1. In the context of the\n",
107 107
     "# 1D learner this means that we will resolve features in 'func' with width 0.1 or wider.\n",
108
-    "runner = adaptive.Runner(learner, goal=lambda l: l.loss() < 0.01)"
108
+    "runner = adaptive.Runner(learner, goal=lambda l: l.loss() < 0.01)\n",
109
+    "runner.live_info()"
109 110
    ]
110 111
   },
111 112
   {