Skip to content

Commit

Permalink
MAINT Update full index
Browse files Browse the repository at this point in the history
  • Loading branch information
lesteve committed Nov 29, 2023
1 parent 7b5aa26 commit 68a922e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 18 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ quizzes:
python build_tools/generate-quizzes.py $(GITLAB_REPO_JUPYTERBOOK_DIR) $(JUPYTER_BOOK_DIR)

full-index:
python build_tools/generate-md-index.py
python build_tools/generate-index.py

$(JUPYTER_BOOK_DIR):
jupyter-book build $(JUPYTER_BOOK_DIR)
Expand Down
4 changes: 4 additions & 0 deletions environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,7 @@ dependencies:
- pip
- pip:
- jupyter-book >= 0.11
# TODO pin myst_parser temporarily because myst_parser 0.18 removed
# to_tokens needed in build_tools/generate-index.py. See
# https://myst-parser.readthedocs.io/en/latest/develop/_changelog.html#breaking-changes
- myst_parser<0.18
24 changes: 7 additions & 17 deletions full-index.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -111,40 +111,30 @@
"### Intuitions on linear models\n",
"\n",
"* [πŸŽ₯ Intuitions on linear models](https://inria.github.io/scikit-learn-mooc/linear_models/linear_models_slides.html)\n",
"* [βœ… Quiz M4.01](https://inria.github.io/scikit-learn-mooc/linear_models/linear_models_quiz_m4_01.html)\n",
"\n",
"### Linear regression\n",
"\n",
"* [Linear regression without scikit-learn](notebooks/linear_regression_without_sklearn.ipynb)\n",
"* [πŸ“ Exercise M4.01](notebooks/linear_models_ex_01.ipynb)\n",
"* [πŸ“ƒ Solution for Exercise M4.01](notebooks/linear_models_sol_01.ipynb)\n",
"* [Linear regression using scikit-learn](notebooks/linear_regression_in_sklearn.ipynb)\n",
"* [βœ… Quiz M4.02](https://inria.github.io/scikit-learn-mooc/linear_models/linear_models_quiz_m4_02.html)\n",
"* [Linear models for classification](notebooks/logistic_regression.ipynb)\n",
"* [βœ… Quiz M4.01](https://inria.github.io/scikit-learn-mooc/linear_models/linear_models_quiz_m4_01.html)\n",
"\n",
"### Modelling non-linear features-target relationships\n",
"### Non-linear feature engineering for linear models\n",
"\n",
"* [Non-linear feature engineering for Linear Regression](notebooks/linear_regression_non_linear_link.ipynb)\n",
"* [πŸ“ Exercise M4.02](notebooks/linear_models_ex_02.ipynb)\n",
"* [πŸ“ƒ Solution for Exercise M4.02](notebooks/linear_models_sol_02.ipynb)\n",
"* [Linear regression for a non-linear features-target relationship](notebooks/linear_regression_non_linear_link.ipynb)\n",
"* [Non-linear feature engineering for Logistic Regression](notebooks/linear_models_feature_engineering_classification.ipynb)\n",
"* [πŸ“ Exercise M4.03](notebooks/linear_models_ex_03.ipynb)\n",
"* [πŸ“ƒ Solution for Exercise M4.03](notebooks/linear_models_sol_03.ipynb)\n",
"* [βœ… Quiz M4.03](https://inria.github.io/scikit-learn-mooc/linear_models/linear_models_quiz_m4_03.html)\n",
"* [βœ… Quiz M4.02](https://inria.github.io/scikit-learn-mooc/linear_models/linear_models_quiz_m4_02.html)\n",
"\n",
"### Regularization in linear model\n",
"\n",
"* [πŸŽ₯ Intuitions on regularized linear models](https://inria.github.io/scikit-learn-mooc/linear_models/regularized_linear_models_slides.html)\n",
"* [Regularization of linear regression model](notebooks/linear_models_regularization.ipynb)\n",
"* [πŸ“ Exercise M4.04](notebooks/linear_models_ex_04.ipynb)\n",
"* [πŸ“ƒ Solution for Exercise M4.04](notebooks/linear_models_sol_04.ipynb)\n",
"* [βœ… Quiz M4.04](https://inria.github.io/scikit-learn-mooc/linear_models/linear_models_quiz_m4_04.html)\n",
"\n",
"### Linear model for classification\n",
"\n",
"* [Linear model for classification](notebooks/logistic_regression.ipynb)\n",
"* [πŸ“ Exercise M4.05](notebooks/linear_models_ex_05.ipynb)\n",
"* [πŸ“ƒ Solution for Exercise M4.05](notebooks/linear_models_sol_05.ipynb)\n",
"* [Beyond linear separation in classification](notebooks/logistic_regression_non_linear.ipynb)\n",
"* [βœ… Quiz M4.05](https://inria.github.io/scikit-learn-mooc/linear_models/linear_models_quiz_m4_05.html)\n",
"* [βœ… Quiz M4.03](https://inria.github.io/scikit-learn-mooc/linear_models/linear_models_quiz_m4_03.html)\n",
"\n",
"[🏁 Wrap-up quiz 4](https://inria.github.io/scikit-learn-mooc/linear_models/linear_models_wrap_up_quiz.html)\n",
"\n",
Expand Down

0 comments on commit 68a922e

Please sign in to comment.