diff --git a/docs/make.jl b/docs/make.jl index 4b640c143..c4d7e276f 100755 --- a/docs/make.jl +++ b/docs/make.jl @@ -67,7 +67,7 @@ pages = [ "Learning Curves" => "learning_curves.md", "Preparing Data" => "preparing_data.md", "Transformers and Other Unsupervised models" => "transformers.md", - "More on Probabilistic Predictors" => "more_on_probabilistic_predictors.md", + "Thresholding Probabilistic Predictors" => "thresholding_probabilistic_predictors.md", "Composing Models" => "composing_models.md", "Linear Pipelines" => "linear_pipelines.md", "Target Transformations" => "target_transformations.md", diff --git a/docs/src/index.md b/docs/src/index.md index 07b22042f..76b06a208 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -56,8 +56,6 @@ To support MLJ development, please cite these works or star the repo: [Model Search](@ref model_search) | [Loading Model Code](@ref) | [Transformers and Other Unsupervised Models](@ref) | -[More on Probabilistic Predictors](@ref) | -[Composing Models](@ref) | [Simple User Defined Models](@ref) | [List of Supported Models](@ref model_list) | [Third Party Packages](@ref) @@ -65,9 +63,12 @@ To support MLJ development, please cite these works or star the repo: ### Meta-algorithms [Evaluating Model Performance](@ref) | [Tuning Models](@ref) | +[Composing Models](@ref) | [Controlling Iterative Models](@ref) | [Learning Curves](@ref)| -[Correcting Class Imbalance](@ref) +[Correcting Class Imbalance](@ref) | +[Thresholding Probabilistic Predictors](@ref) + ### Composition [Composing Models](@ref) | diff --git a/docs/src/more_on_probabilistic_predictors.md b/docs/src/thresholding_probabilistic_predictors.md similarity index 92% rename from docs/src/more_on_probabilistic_predictors.md rename to docs/src/thresholding_probabilistic_predictors.md index c75eec639..720d00b67 100644 --- a/docs/src/more_on_probabilistic_predictors.md +++ b/docs/src/thresholding_probabilistic_predictors.md @@ -1,4 +1,4 @@ -# More on Probabilistic Predictors +# Thresholding Probabilistic Predictors Although one can call `predict_mode` on a probabilistic binary classifier to get deterministic predictions, a more flexible strategy diff --git a/src/MLJ.jl b/src/MLJ.jl index 609b63d37..f37b5145b 100644 --- a/src/MLJ.jl +++ b/src/MLJ.jl @@ -17,7 +17,7 @@ following model wrappers: `Pipeline`, `TunedModel`, `EnsembleModel`, `IteratedMo `evaluate`/`evaluate!` for model performance, `|>` pipeline syntax, `TransformedTargetModel` wrapper, general model composition syntax (learning networks), synthetic data generators, `scitype` and `schema` methods (from ScientificTypes.jl) for - checking how MLJ interprets your data + checking how MLJ interprets your data. Generally required for any MLJ workflow. - StatisticalMeasures.jl: MLJ-compatible measures (metrics) for machine learning, confusion matrices, ROC curves.