Skip to content

Commit 40fd773

Browse files
committed
add a perceptron classifier to examples
1 parent 43db086 commit 40fd773

File tree

5 files changed

+402
-5
lines changed

5 files changed

+402
-5
lines changed

docs/src/common_implementation_patterns.md

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

2323
- [Regression](@ref): Supervised learners for continuous targets
2424

25-
- Classification: Supervised learners for categorical targets
25+
- [Classification](@ref): Supervised learners for categorical targets
2626

2727
- Clusterering: Algorithms that group data into clusters for classification and
2828
possibly dimension reduction. May be true learners (generalize to new data) or static.
2929

30-
- Gradient Descent: Including neural networks.
30+
- [Gradient Descent](@ref): Including neural networks.
3131

3232
- [Iterative Algorithms](@ref)
3333

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
# Classification
2+
3+
See these examples from tests:
4+
5+
- [perceptron classifier](https://github.com/JuliaAI/LearnAPI.jl/blob/dev/test/integration/gradient_descent.jl)
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Gradient Descent
2+
3+
See [this
4+
example](https://github.com/JuliaAI/LearnAPI.jl/blob/dev/test/integration/gradient_descent.jl)
5+
from tests.
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Iterative Algorithms
22

3-
See [this
4-
example](https://github.com/JuliaAI/LearnAPI.jl/blob/dev/test/integration/ensembling.jl)
5-
from tests.
3+
See these examples from tests:
4+
5+
- [bagged ensembling](https://github.com/JuliaAI/LearnAPI.jl/blob/dev/test/integration/ensembling.jl)
6+
7+
- [perceptron classifier](https://github.com/JuliaAI/LearnAPI.jl/blob/dev/test/integration/gradient_descent.jl)

0 commit comments

Comments
 (0)