Skip to content

Commit

Permalink
add extra layer to sidebar table of contents in manual
Browse files Browse the repository at this point in the history
  • Loading branch information
ablaom committed Jun 5, 2024
1 parent 5a28d4f commit 7631320
Showing 1 changed file with 55 additions and 38 deletions.
93 changes: 55 additions & 38 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -55,45 +55,62 @@ pages = [
"Model Browser" => "model_browser.md",
"About MLJ" => "about_mlj.md",
"Learning MLJ" => "learning_mlj.md",
"Getting Started" => "getting_started.md",
"Common MLJ Workflows" => "common_mlj_workflows.md",
"Working with Categorical Data" => "working_with_categorical_data.md",
"Model Search" => "model_search.md",
"Loading Model Code" => "loading_model_code.md",
"Machines" => "machines.md",
"Evaluating Model Performance" => "evaluating_model_performance.md",
"Performance Measures" => "performance_measures.md",
"Weights" => "weights.md",
"Tuning Models" => "tuning_models.md",
"Learning Curves" => "learning_curves.md",
"Preparing Data" => "preparing_data.md",
"Transformers and Other Unsupervised models" => "transformers.md",
"Thresholding Probabilistic Predictors" => "thresholding_probabilistic_predictors.md",
"Composing Models" => "composing_models.md",
"Linear Pipelines" => "linear_pipelines.md",
"Target Transformations" => "target_transformations.md",
"Homogeneous Ensembles" => "homogeneous_ensembles.md",
"Correcting Class Imbalance" => "correcting_class_imbalance.md",
"Model Stacking" => "model_stacking.md",
"Learning Networks" => "learning_networks.md",
"Controlling Iterative Models" => "controlling_iterative_models.md",
"Generating Synthetic Data" => "generating_synthetic_data.md",
"Logging Workflows" => "logging_workflows.md",
"OpenML Integration" => "openml_integration.md",
"Acceleration and Parallelism" => "acceleration_and_parallelism.md",
"Simple User Defined Models" => "simple_user_defined_models.md",
"Quick-Start Guide to Adding Models" =>
"quick_start_guide_to_adding_models.md",
"Adding Models for General Use" => "adding_models_for_general_use.md",
"Modifying Behavior" => "modifying_behavior.md",
"Internals" => "internals.md",
"List of Supported Models" => "list_of_supported_models.md",
"Third Party Packages" => "third_party_packages.md",
"Glossary" => "glossary.md",
"MLJ Cheatsheet" => "mlj_cheatsheet.md",
"FAQ" => "frequently_asked_questions.md",
"Basics" => [
"Getting Started" => "getting_started.md",
"Common MLJ Workflows" => "common_mlj_workflows.md",
"Machines" => "machines.md",
"MLJ Cheatsheet" => "mlj_cheatsheet.md",
],
"Data" => [
"Working with Categorical Data" => "working_with_categorical_data.md",
"Preparing Data" => "preparing_data.md",
"Generating Synthetic Data" => "generating_synthetic_data.md",
"OpenML Integration" => "openml_integration.md",
],
"Model Basics" => [
"Model Search" => "model_search.md",
"Loading Model Code" => "loading_model_code.md",
"Transformers and Other Unsupervised models" => "transformers.md",
"List of Supported Models" => "list_of_supported_models.md",
],
"Meta-algorithms" => [
"Evaluating Model Performance" => "evaluating_model_performance.md",
"Tuning Models" => "tuning_models.md",
"Learning Curves" => "learning_curves.md",
"Controlling Iterative Models" => "controlling_iterative_models.md",
"Correcting Class Imbalance" => "correcting_class_imbalance.md",
"Thresholding Probabilistic Predictors" =>
"thresholding_probabilistic_predictors.md",
"Target Transformations" => "target_transformations.md",
"Homogeneous Ensembles" => "homogeneous_ensembles.md",
],
"Model Composition" => [
"Composing Models" => "composing_models.md",
"Linear Pipelines" => "linear_pipelines.md",
"Model Stacking" => "model_stacking.md",
"Learning Networks" => "learning_networks.md",
],
"Third Party Tools" => [
"Logging Workflows using MLflow" => "logging_workflows.md",
"Third Party Packages" => "third_party_packages.md",
],
"Customization and Extension" => [
"Simple User Defined Models" => "simple_user_defined_models.md",
"Quick-Start Guide to Adding Models" =>
"quick_start_guide_to_adding_models.md",
"Adding Models for General Use" => "adding_models_for_general_use.md",
"Modifying Behavior" => "modifying_behavior.md",
"Internals" => "internals.md",
],
"Miscellaneous" => [
"Performance Measures" => "performance_measures.md",
"Weights" => "weights.md",
"Acceleration and Parallelism" => "acceleration_and_parallelism.md",
"Glossary" => "glossary.md",
"FAQ" => "frequently_asked_questions.md",
],
"Index of Methods" => "api.md",
]
]

for (k, v) in pages
println("$k\t=>$v")
Expand Down

0 comments on commit 7631320

Please sign in to comment.