Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs nav fix after 400 #591

Merged
merged 8 commits into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/theorist/Equation Discovery.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"source": [
"# Automated Equation Discovery With The Bayesian Machine Scientist \n",
"\n",
"In this tutorial we will demonstrate how to autonomously recover equations from data using the Bayesian Machine Scientist. We will follow the sci-kit learn workflow."
"In this tutorial we will demonstrate how to autonomously recover equations from data using the Bayesian Machine Scientist. We will follow the sci-kit learn workflow.\n",
"\n",
"Note: this tutorial requires Python 3.10 to run successfully."
]
},
{
Expand Down
20 changes: 12 additions & 8 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,13 @@ plugins:
- name: core
import_url: "https://github.com/autoresearch/autora-core/?branch=main"
imports: [
"docs/cycle/*",
"docs/pipeline/*",
"docs/experimentalists/grid/*",
"docs/experimentalists/random/*",
"docs/cli/*/*",
"docs/",
"src/",
]
- name: user-cookiecutter
import_url: "https://github.com/autoresearch/autora-user-cookiecutter/?branch=main"
imports: [
"docs/*",
"docs/",
]
- name: darts
import_url: "https://github.com/autoresearch/autora-theorist-darts/?branch=main"
Expand Down Expand Up @@ -158,11 +154,19 @@ nav:
- III - Functional Workflow: 'tutorials/basic/Tutorial-III-Functional-Workflow.ipynb'
- IV - Customization: 'tutorials/basic/Tutorial-IV-Customization.ipynb'
- Advanced:
- Equation Discovery: 'tutorials/Equation Discovery.ipynb'
- Equation Discovery: 'theorist/Equation Discovery.ipynb'
- Experimentalists: 'tutorials/Experimentalist.ipynb'
Copy link
Collaborator

@benwandrew benwandrew Dec 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this isn't really an advanced Experimentalist tutorial, is it?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, it was in the advanced tutorials before, but was a broken link. I just changed the path.

BTW: There is another tutorial file in the advanced folder called "Theorist.ipynb" that we don't use anywhere right now. I was not sure about that one either.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should also mark the theorist/Equation Discovery.ipynb file as requiring python3.10, because it uses the case-match statement which is first available then. (Or we should use the old if-elif-else syntax instead.) That would be a different PR though.

- Online Closed-Loop Discovery: 'user-cookiecutter/docs/index.md'
- Online Closed-Loop Discovery:
- 'user-cookiecutter/docs/index.md'
- User Guide:
- Installation: 'installation.md'
- Terminology: 'terminology.md'
- Core:
- Home: 'core/docs/index.md'
- Examples:
- 'core/docs/cycle/Basic Introduction to Functions and States.ipynb'
- 'core/docs/cycle/Combining Experimentalists with State.ipynb'
- 'core/docs/cycle/Linear and Cyclical Workflows using Functions and States.ipynb'
- Theorists:
- Home: 'theorist/index.md'
- DARTS: '!import https://github.com/autoresearch/autora-theorist-darts/?branch=main&extra_imports=["mkdocs/base.yml"]'
Expand Down