Skip to content

Commit 69fbfeb

Browse files
committed
add links to dim-reduction pattern; correct "ensembling" tag
1 parent 7e72784 commit 69fbfeb

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

docs/src/common_implementation_patterns.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ implementations fall into one (or more) of the following informally understood p
2727

2828
- [Feature Engineering](@ref): Algorithms for selecting or combining features
2929

30-
- Dimension Reduction: Transformers that learn to reduce feature space dimension
30+
- [Dimension Reduction](@ref): Transformers that learn to reduce feature space dimension
3131

3232
- Missing Value Imputation
3333

34-
- Transformers: Other transformers, such as standardizers, and categorical
34+
- [Transformers](@ref): Other transformers, such as standardizers, and categorical
3535
encoders.
3636

3737
- [Static Algorithms](@ref): Algorithms that do not learn, in the sense they must be
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
11
# Dimension Reduction
2+
3+
Check out the following examples:
4+
5+
- [Truncated
6+
SVD]((https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/dimension_reduction.jl
7+
(from the TestLearnAPI.jl test suite)

docs/src/patterns/transformers.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
11
# Transformers
2+
3+
Check out the following examples:
4+
5+
- [Truncated
6+
SVD]((https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/dimension_reduction.jl
7+
(from the TestLearnAPI.jl test suite)

src/traits.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ tags() = [
176176
"missing value imputation",
177177
"transformers",
178178
"static algorithms",
179-
"ensemble algorithms",
179+
"ensembling",
180180
"time series forecasting",
181181
"time series classification",
182182
"survival analysis",

0 commit comments

Comments
 (0)