From 02522f267cf55cabbb4dcb8292a06aa3757e77a4 Mon Sep 17 00:00:00 2001 From: Bas Nijholt <basnijholt@gmail.com> Date: Fri, 13 Sep 2019 17:15:35 +0200 Subject: [PATCH] simplify --- paper.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/paper.md b/paper.md index e2ce98b..74fb347 100755 --- a/paper.md +++ b/paper.md @@ -203,8 +203,8 @@ To do this automatically (recommended) and in parallel (by default on all cores from adaptive import Runner runner = Runner(learner, goal) ``` -This will return immediately as the calculation happens in the background. -That also means that as the calculation is in progress `learner.data` plotted with `learner.plot()`. +This will return immediately because the calculation happens in the background. +That also means that as the calculation is in progress `learner.data` is accessible and plotted with `learner.plot()`. Additionally, in a Jupyter notebook environment, one can call `runner.live_info()` to display useful information. To change the loss function ... -- GitLab