Skip to content

Files

Latest commit

 

History

History
69 lines (41 loc) · 3.31 KB

README.md

File metadata and controls

69 lines (41 loc) · 3.31 KB

LearnAPI.jl

A base Julia interface for machine learning and statistics

Lifecycle:Maturing Build Status codecov Docs Docs

New contributions welcome. See the road map.

Synopsis

LearnAPI.jl provides for variations and elaborations on the following basic pattern in machine learning and statistics:

model = fit(learner, data)
predict(model, newdata)

Here learner specifies the configuration the algorithm (the hyperparameters) while model stores learned parameters and any byproducts of algorithm execution.

LearnAPI.jl is mostly method stubs and lots of documentation. It does not provide meta-algorithms, such as cross-validation, hyperparameter optimization, or model composition, but does aim to support such algorithms.

Related packages

Selected packages providing alternative API's

The following alphabetical list of packages provide public base API's. Some provide additional functionality. PR's to add missing items welcome.

Credits

Created by Anthony Blaom, in cooperation with Cameron Bieganek and other members of the Julia community.