Skip to content

A Julia interface for training and applying models in machine learning and statistics

License

Notifications You must be signed in to change notification settings

JuliaAI/LearnAPI.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.