Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix documentation building
  • Loading branch information
mfeurer committed Feb 23, 2023
commit 6713562a67e0668817f67c564aa9db9e5bee87c5
3 changes: 3 additions & 0 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:
- name: Install dependencies
run: |
pip install -e .[docs,examples,examples_unix]
# dependency "fanova" does not work with numpy 1.24 or later
# https://github.com/automl/fanova/issues/108
pip install numpy<1.24
- name: Make docs
run: |
cd doc
Expand Down
4 changes: 2 additions & 2 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Example
run.publish()
print(f'View the run online: {run.openml_url}')

You can find more examples in our :ref:`sphx_glr_examples`.
You can find more examples in our :ref:`examples-index`.

----------------------------
How to get OpenML for python
Expand All @@ -60,7 +60,7 @@ Content

* :ref:`usage`
* :ref:`api`
* :ref:`sphx_glr_examples`
* :ref:`examples-index`
* :ref:`extensions`
* :ref:`contributing`
* :ref:`progress`
Expand Down
4 changes: 2 additions & 2 deletions examples/30_extended/fetch_evaluations_tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ def plot_cdf(values, metric="predictive_accuracy"):
plt.title("CDF")
plt.xlabel(metric)
plt.ylabel("Likelihood")
plt.grid(b=True, which="major", linestyle="-")
plt.grid(visible=True, which="major", linestyle="-")
plt.minorticks_on()
plt.grid(b=True, which="minor", linestyle="--")
plt.grid(visible=True, which="minor", linestyle="--")
plt.axvline(max_val, linestyle="--", color="gray")
plt.text(max_val, 0, "%.3f" % max_val, fontsize=9)
plt.show()
Expand Down
2 changes: 2 additions & 0 deletions examples/README.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.. _examples-index:

================
Examples Gallery
================