Skip to content

Commit

Permalink
rename section to "Thresholding Probabilistic Predictors"
Browse files Browse the repository at this point in the history
  • Loading branch information
ablaom committed May 30, 2024
1 parent 0c2b6a7 commit 2d52e10
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
7 changes: 4 additions & 3 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,19 @@ 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)

### 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) |
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/MLJ.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

3 comments on commit 2d52e10

@EssamWisam
Copy link
Collaborator

Choose a reason for hiding this comment

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

This is great but do you think that exposing the meta-algorithms to the ModelDescriptor.toml so that they appear in the model browser (and hence, the MLJ website) would improve accessibility to them?

@ablaom
Copy link
Member Author

@ablaom ablaom commented on 2d52e10 May 30, 2024

Choose a reason for hiding this comment

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

Yeah, I'm working on that now. It's a little complicated.

@ablaom
Copy link
Member Author

@ablaom ablaom commented on 2d52e10 Jun 5, 2024

Choose a reason for hiding this comment

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

Addressed in #1127

Please sign in to comment.