... | ... |
@@ -10,17 +10,22 @@ This is an introductory notebook that shows some basic use cases. |
10 | 10 |
``adaptive`` needs at least Python 3.6, and the following packages: |
11 | 11 |
|
12 | 12 |
- ``scipy`` |
13 |
-- ``sortedcontainers`` |
|
13 |
+- ``sortedcollections >= 1.1`` |
|
14 |
+- ``sortedcontainers >= 2.0`` |
|
15 |
+- ``atomicwrites`` |
|
14 | 16 |
|
15 | 17 |
Additionally ``adaptive`` has lots of extra functionality that makes it |
16 | 18 |
simple to use from Jupyter notebooks. This extra functionality depends |
17 | 19 |
on the following packages |
18 | 20 |
|
21 |
+- ``ipython`` |
|
19 | 22 |
- ``ipykernel>=4.8.0`` |
20 | 23 |
- ``jupyter_client>=5.2.2`` |
21 |
-- ``holoviews`` |
|
22 |
-- ``bokeh`` |
|
24 |
+- ``holoviews>=1.9.1`` |
|
23 | 25 |
- ``ipywidgets`` |
26 |
+- ``bokeh`` |
|
27 |
+- ``matplotlib`` |
|
28 |
+- ``plotly`` |
|
24 | 29 |
|
25 | 30 |
We recommend to start with the :ref:`Tutorial `~adaptive.Learner1D``. |
26 | 31 |
|
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
Tutorial Adaptive |
2 | 2 |
================= |
3 | 3 |
|
4 |
-`Adaptive <https://gitlab.kwant-project.org/qt/adaptive-evaluation>`__ |
|
4 |
+`Adaptive <https://github.com/python-adaptive/adaptive>`__ |
|
5 | 5 |
is a package for adaptively sampling functions with support for parallel |
6 | 6 |
evaluation. |
7 | 7 |
|
... | ... |
@@ -1,11 +1,6 @@ |
1 | 1 |
Tutorial Adaptive |
2 | 2 |
================= |
3 | 3 |
|
4 |
-.. warning:: |
|
5 |
- This documentation is not functional yet! Whenever |
|
6 |
- `this Pull Request <https://github.com/jupyter-widgets/jupyter-sphinx/pull/22/>`__. |
|
7 |
- is done, the documentation will be correctly build. |
|
8 |
- |
|
9 | 4 |
`Adaptive <https://gitlab.kwant-project.org/qt/adaptive-evaluation>`__ |
10 | 5 |
is a package for adaptively sampling functions with support for parallel |
11 | 6 |
evaluation. |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,49 @@ |
1 |
+Tutorial Adaptive |
|
2 |
+================= |
|
3 |
+ |
|
4 |
+.. warning:: |
|
5 |
+ This documentation is not functional yet! Whenever |
|
6 |
+ `this Pull Request <https://github.com/jupyter-widgets/jupyter-sphinx/pull/22/>`__. |
|
7 |
+ is done, the documentation will be correctly build. |
|
8 |
+ |
|
9 |
+`Adaptive <https://gitlab.kwant-project.org/qt/adaptive-evaluation>`__ |
|
10 |
+is a package for adaptively sampling functions with support for parallel |
|
11 |
+evaluation. |
|
12 |
+ |
|
13 |
+This is an introductory notebook that shows some basic use cases. |
|
14 |
+ |
|
15 |
+``adaptive`` needs at least Python 3.6, and the following packages: |
|
16 |
+ |
|
17 |
+- ``scipy`` |
|
18 |
+- ``sortedcontainers`` |
|
19 |
+ |
|
20 |
+Additionally ``adaptive`` has lots of extra functionality that makes it |
|
21 |
+simple to use from Jupyter notebooks. This extra functionality depends |
|
22 |
+on the following packages |
|
23 |
+ |
|
24 |
+- ``ipykernel>=4.8.0`` |
|
25 |
+- ``jupyter_client>=5.2.2`` |
|
26 |
+- ``holoviews`` |
|
27 |
+- ``bokeh`` |
|
28 |
+- ``ipywidgets`` |
|
29 |
+ |
|
30 |
+ |
|
31 |
+.. note:: |
|
32 |
+ Because this documentation consists of static html, the ``live_plot`` |
|
33 |
+ and ``live_info`` widget is not live. Download the notebooks |
|
34 |
+ in order to see the real behaviour. |
|
35 |
+ |
|
36 |
+.. toctree:: |
|
37 |
+ :hidden: |
|
38 |
+ |
|
39 |
+ tutorial.Learner1D |
|
40 |
+ tutorial.Learner2D |
|
41 |
+ tutorial.custom_loss |
|
42 |
+ tutorial.AverageLearner |
|
43 |
+ tutorial.BalancingLearner |
|
44 |
+ tutorial.DataSaver |
|
45 |
+ tutorial.IntegratorLearner |
|
46 |
+ tutorial.LearnerND |
|
47 |
+ tutorial.SKOptLearner |
|
48 |
+ tutorial.parallelism |
|
49 |
+ tutorial.advanced-topics |