You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LearnAPI.jl is mostly method stubs and lots of documentation. It does not provide
27
+
meta-algorithms, such as cross-validation or hyperparameter optimization, but does aim to
28
+
support such algorithms.
28
29
29
-
Train:
30
+
## Related packages
30
31
31
-
```julia
32
-
julia> model =fit(ridge, data)
33
-
```
32
+
-[MLCore.jl](https://github.com/JuliaML/MLCore.jl): The default sub-sampling API (`getobs`/`numbobs`) for LearnAPI.jl implementations, which supports tables and arrays.
34
33
35
-
Predict:
34
+
-[LearnTestAPI.jl](https://github.com/JuliaAI/LearnTestAPI.jl): Package to test implementations of LearnAPI.jl (but documented here)
36
35
37
-
```julia
38
-
julia>predict(model, data)[1]
39
-
"virginica"
40
-
```
36
+
-[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/LearnDataFrontEnds.jl/stable/))
41
37
42
-
Predict a probability distribution ([proxy](https://juliaai.github.io/LearnAPI.jl/dev/kinds_of_target_proxy/#proxy_types) for the target):
38
+
-[StatisticalMeasures.jl](https://github.com/JuliaAI/StatisticalMeasures.jl): Package providing metrics, compatible with LearnAPI.jl
39
+
40
+
### Selected packages providing alternative API's
41
+
42
+
The following alphabetical list of packages provide public base API's. Some provide
43
+
additional functionality. PR's to add missing items welcome.
-[MLUtils.jl](https://github.com/JuliaML/MLUtils.jl) (more than a base API, focused on deep learning)
56
+
57
+
-[ScikitLearn.jl](https://github.com/cstjean/ScikitLearn.jl) (an API in addition to being a wrapper for [scikit-learn](https://scikit-learn.org/stable/))
58
+
59
+
-[StatsAPI.jl](https://github.com/JuliaStats/StatsAPI.jl/tree/main) (specialized to needs of traditional statistical models)
0 commit comments