Browse code

disable logging for the LearnerND in the example notebook

Bas Nijholt authored on 31/08/2018 14:44:14
Showing 1 changed files
... ...
@@ -270,7 +270,7 @@
270 270
     "    return x + z**2 + np.exp(-(x**2 + y**2 + z**2 - 0.75**2)**2/a**4)\n",
271 271
     "\n",
272 272
     "learner = adaptive.LearnerND(sphere, bounds=[(-1, 1), (-1, 1), (-1, 1)])\n",
273
-    "runner = adaptive.Runner(learner, goal=lambda l: l.loss() < 0.02, log=True)\n",
273
+    "runner = adaptive.Runner(learner, goal=lambda l: l.loss() < 0.01)\n",
274 274
     "runner.live_info()"
275 275
    ]
276 276
   },