From cb8133d400a04c371a54edf37f442c7ce3f16109 Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Sat, 2 Nov 2024 15:49:27 +1300 Subject: [PATCH] fix links for patterns to point to LearnTestAPI.jl --- docs/src/patterns/classification.md | 5 +++-- docs/src/patterns/density_estimation.md | 4 ++-- docs/src/patterns/ensembling.md | 7 ++++--- docs/src/patterns/feature_engineering.md | 7 +++++-- docs/src/patterns/gradient_descent.md | 7 ++++--- docs/src/patterns/incremental_algorithms.md | 4 ++-- docs/src/patterns/iterative_algorithms.md | 6 +++--- docs/src/patterns/meta_algorithms.md | 4 ++-- docs/src/patterns/regression.md | 8 +++++--- docs/src/patterns/static_algorithms.md | 8 +++++--- 10 files changed, 35 insertions(+), 25 deletions(-) diff --git a/docs/src/patterns/classification.md b/docs/src/patterns/classification.md index 2913cea..47e0404 100644 --- a/docs/src/patterns/classification.md +++ b/docs/src/patterns/classification.md @@ -1,5 +1,6 @@ # Classification -See these examples from tests: +See these examples from the JuliaTestAPI.jl test suite: -- [perceptron classifier](https://github.com/JuliaAI/LearnAPI.jl/blob/dev/test/patterns/gradient_descent.jl) +- [perceptron + classifier](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/gradient_descent.jl) diff --git a/docs/src/patterns/density_estimation.md b/docs/src/patterns/density_estimation.md index e9ca083..9fc0144 100644 --- a/docs/src/patterns/density_estimation.md +++ b/docs/src/patterns/density_estimation.md @@ -1,5 +1,5 @@ # Density Estimation -See these examples from tests: +See these examples from the JuliaTestAPI.jl test suite: -- [normal distribution estimator](https://github.com/JuliaAI/LearnAPI.jl/blob/dev/test/patterns/incremental_algorithms.jl) +- [normal distribution estimator](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/incremental_algorithms.jl) diff --git a/docs/src/patterns/ensembling.md b/docs/src/patterns/ensembling.md index a93ae30..ea5faf8 100644 --- a/docs/src/patterns/ensembling.md +++ b/docs/src/patterns/ensembling.md @@ -1,5 +1,6 @@ # Ensembling -See [this -example](https://github.com/JuliaAI/LearnAPI.jl/blob/dev/test/patterns/ensembling.jl) -from tests. +See these examples from the JuliaTestAPI.jl test suite: + +- [bagged ensembling of a regression model](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/ensembling.jl) + diff --git a/docs/src/patterns/feature_engineering.md b/docs/src/patterns/feature_engineering.md index 850dc0e..6e3c656 100644 --- a/docs/src/patterns/feature_engineering.md +++ b/docs/src/patterns/feature_engineering.md @@ -1,4 +1,7 @@ # Feature Engineering -For a simple feature selection algorithm (no "learning) see -[these examples](https://github.com/JuliaAI/LearnAPI.jl/blob/dev/test/patterns/static_algorithms.jl) from tests. +See these examples from the JuliaTestAI.jl test suite: + +- [feature + selectors](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/static_algorithms.jl) + from tests. diff --git a/docs/src/patterns/gradient_descent.md b/docs/src/patterns/gradient_descent.md index 7fd4a11..c898b38 100644 --- a/docs/src/patterns/gradient_descent.md +++ b/docs/src/patterns/gradient_descent.md @@ -1,5 +1,6 @@ # Gradient Descent -See [this -example](https://github.com/JuliaAI/LearnAPI.jl/blob/dev/test/patterns/gradient_descent.jl) -from tests. +See these examples from the JuliaTestAI.jl test suite: + +- [perceptron +classifier](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/gradient_descent.jl) diff --git a/docs/src/patterns/incremental_algorithms.md b/docs/src/patterns/incremental_algorithms.md index 89ad864..d2855a5 100644 --- a/docs/src/patterns/incremental_algorithms.md +++ b/docs/src/patterns/incremental_algorithms.md @@ -1,5 +1,5 @@ # Incremental Algorithms -See these examples from tests: +See these examples from the JuliaTestAI.jl test suite: -- [normal distribution estimator](https://github.com/JuliaAI/LearnAPI.jl/blob/dev/test/patterns/incremental_algorithms.jl) +- [normal distribution estimator](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/incremental_algorithms.jl) diff --git a/docs/src/patterns/iterative_algorithms.md b/docs/src/patterns/iterative_algorithms.md index 1cf4ab2..b12c614 100644 --- a/docs/src/patterns/iterative_algorithms.md +++ b/docs/src/patterns/iterative_algorithms.md @@ -1,7 +1,7 @@ # Iterative Algorithms -See these examples from tests: +See these examples from the JuliaTestAI.jl test suite: -- [bagged ensembling](https://github.com/JuliaAI/LearnAPI.jl/blob/dev/test/patterns/ensembling.jl) +- [bagged ensembling](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/ensembling.jl) -- [perceptron classifier](https://github.com/JuliaAI/LearnAPI.jl/blob/dev/test/patterns/gradient_descent.jl) +- [perceptron classifier](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/gradient_descent.jl) diff --git a/docs/src/patterns/meta_algorithms.md b/docs/src/patterns/meta_algorithms.md index 17ccad8..6a9e730 100644 --- a/docs/src/patterns/meta_algorithms.md +++ b/docs/src/patterns/meta_algorithms.md @@ -1,7 +1,7 @@ # Meta-algorithms -Many meta-algorithms are can be implemented as wrappers. An example is [this bagged +Many meta-algorithms are can be implemented as wrappers. An example is [this bagged ensemble -algorithm](https://github.com/JuliaAI/LearnAPI.jl/blob/dev/test/patterns/ensembling.jl) +algorithm](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/ensembling.jl) from tests. diff --git a/docs/src/patterns/regression.md b/docs/src/patterns/regression.md index 7cf3b6d..1a50aec 100644 --- a/docs/src/patterns/regression.md +++ b/docs/src/patterns/regression.md @@ -1,5 +1,7 @@ # Regression -See [these -examples](https://github.com/JuliaAI/LearnAPI.jl/blob/dev/test/patterns/regression.jl) -from tests. +See these examples from the JuliaTestAI.jl test suite: + +- [ridge + regression](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/regression.jl) + diff --git a/docs/src/patterns/static_algorithms.md b/docs/src/patterns/static_algorithms.md index 21a517d..4724006 100644 --- a/docs/src/patterns/static_algorithms.md +++ b/docs/src/patterns/static_algorithms.md @@ -1,7 +1,9 @@ # Static Algorithms -See [these -examples](https://github.com/JuliaAI/LearnAPI.jl/blob/dev/test/patterns/static_algorithms.jl) -from tests. +See these examples from the JuliaTestAI.jl test suite: + +- [feature + selection](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/static_algorithms.jl) +