Skip to content

Commit

Permalink
remove ntasks
Browse files Browse the repository at this point in the history
Co-Authored-By: Joseph Weston <[email protected]>
  • Loading branch information
basnijholt and jbweston committed Aug 21, 2021
1 parent b6e4c00 commit f93442d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example-notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
"source": [
"# The end condition is when the \"loss\" is less than 0.01. In the context of the\n",
"# 1D learner this means that we will resolve features in 'func' with width 0.01 or wider.\n",
"runner = adaptive.Runner(learner, goal=lambda l: l.loss() < 0.01)\n",
"runner = adaptive.Runner(learner, goal=lambda l: l.loss() < 0.01, tasks=4)\n",
"runner.live_info()"
]
},
Expand Down

0 comments on commit f93442d

Please sign in to comment.