Skip to content
Snippets Groups Projects
Commit 09fa7b15 authored by Bas Nijholt's avatar Bas Nijholt
Browse files

add link to docs

parent 3e0d63bb
No related branches found
No related tags found
No related merge requests found
......@@ -147,6 +147,12 @@
note = {Champaign, IL, 2019}
}
@misc{adaptive_docs,
author = {Bas Nijholt and Joseph Weston and Anton Akhmerov},
title = {Adaptive documentation},
note = {https://adaptive.readthedocs.io}
}
@article{klein1999star,
title={Star formation with 3-D adaptive mesh refinement: the collapse and fragmentation of molecular clouds},
author={Klein, Richard I},
......
......@@ -305,8 +305,8 @@ runner = Runner(learner, goal)
```
#### The BalancingLearner can run many learners simultaneously.
Frequently, we need to run more than one function (learner) at once, for this we have implemented the `BalancingLearner`.
This learner asks all child learners for points, and will choose the point of the learner that maximizes the loss improvement.
Frequently, we need to run more than one function (learner) at once, for this we have implemented the `BalancingLearner`, which does not take a function, but a list of learners.
This learner asks all child learners for points and will choose the point of the learner that maximizes the loss improvement, thereby it balances the resources over the different learners.
We can use it like
```python
from functools import partial
......@@ -320,6 +320,7 @@ bal_learner = BalancingLearner(learners)
runner = Runner(bal_learner, goal)
```
For more details on how to use Adaptive we recommend to read the documentation [@adaptive_docs].
# Possible extensions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment