Skip to content

Commit 05c466b

Browse files
committed
add links to classifier exemplar; fix some links
1 parent c8d50ca commit 05c466b

14 files changed

+21
-18
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ New contributions welcome. See the [road map](ROADMAP.md).
1313

1414
## Synopsis
1515

16-
Package provides for variations and elaborations on the following basic pattern in machine
16+
LearnAPI.jl provides for variations and elaborations on the following basic pattern in machine
1717
learning and statistics:
1818

1919
```julia
@@ -30,7 +30,7 @@ Here `learner` specifies the configuration the algorithm (the hyperparameters) w
3030

3131
- [LearnTestAPI.jl](https://github.com/JuliaAI/LearnTestAPI.jl): Package to test implementations of LearnAPI.jl (but documented here)
3232

33-
- [LearnDataFrontEnds.jl](https://github.com/JuliaAI/LearnDataFrontEnds.jl): for including flexible, user-friendly, data front ends for LearnAPI.jl implementations ([docs]((https://juliaai.github.io/stable/))
33+
- [LearnDataFrontEnds.jl](https://github.com/JuliaAI/LearnDataFrontEnds.jl): for including flexible, user-friendly, data front ends for LearnAPI.jl implementations ([docs](https://juliaai.github.io/stable/))
3434

3535

3636
## Credits

docs/src/patterns/classification.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22

33
See these examples from the JuliaTestAPI.jl test suite:
44

5-
- [perceptron classifier](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/gradient_descent.jl)
5+
- [perceptron classifier](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/src/learners/gradient_descent.jl)
6+
7+
- [constant classifier](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/src/learners/classification.jl) (including `Sage` data front end)

docs/src/patterns/density_estimation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
See these examples from the JuliaTestAPI.jl test suite:
44

5-
- [normal distribution estimator](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/incremental_algorithms.jl)
5+
- [normal distribution estimator](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/src/learners/incremental_algorithms.jl)

docs/src/patterns/dimension_reduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
See these examples from the JuliaTestAPI.jl test suite:
44

5-
- [Truncated SVD](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/dimension_reduction.jl)
5+
- [Truncated SVD](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/src/learners/dimension_reduction.jl) (including `Tarragon` data front end)
66

docs/src/patterns/ensembling.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
See these examples from the JuliaTestAPI.jl test suite:
44

5-
- [bagged ensembling of a regression model](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/ensembling.jl)
5+
- [bagged ensembling of a regression model](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/src/learners/ensembling.jl)
66

7-
- [extremely randomized ensemble of decision stumps (regression)](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/ensembling.jl)
7+
- [extremely randomized ensemble of decision stumps (regression)](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/src/learners/ensembling.jl)

docs/src/patterns/feature_engineering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
See these examples from the JuliaTestAI.jl test suite:
44

55
- [feature
6-
selectors](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/static_algorithms.jl)
6+
selectors](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/src/learners/static_algorithms.jl)
77
from tests.

docs/src/patterns/gradient_descent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
See these examples from the JuliaTestAI.jl test suite:
44

5-
- [perceptron classifier](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/gradient_descent.jl)
5+
- [perceptron classifier](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/src/learners/gradient_descent.jl)

docs/src/patterns/incremental_algorithms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
See these examples from the JuliaTestAI.jl test suite:
44

5-
- [normal distribution estimator](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/incremental_algorithms.jl)
5+
- [normal distribution estimator](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/src/learners/incremental_algorithms.jl)

docs/src/patterns/iterative_algorithms.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
See these examples from the JuliaTestAI.jl test suite:
44

5-
- [bagged ensembling](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/ensembling.jl)
5+
- [bagged ensembling](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/src/learners/ensembling.jl)
66

7-
- [perceptron classifier](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/gradient_descent.jl)
7+
- [perceptron classifier](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/src/learners/gradient_descent.jl)
88

9-
- [extremely randomized ensemble of decision stumps (regression)](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/ensembling.jl)
9+
- [extremely randomized ensemble of decision stumps (regression)](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/src/learners/ensembling.jl)

docs/src/patterns/meta_algorithms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
Many meta-algorithms are can be implemented as wrappers. An example is [this bagged
44
ensemble
5-
algorithm](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/test/patterns/ensembling.jl)
5+
algorithm](https://github.com/JuliaAI/LearnTestAPI.jl/blob/dev/src/learners/ensembling.jl)
66
from tests.
77

0 commit comments

Comments
 (0)