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 Coverage Docs

Comprehensive documentation is here.

New contributions welcome. See the road map.

Code snippet

Configure a learning algorithm, and inspect available functionality:

julia> algorithm = Ridge(lambda=0.1)
julia> LearnAPI.functions(algorithm)
(:(LearnAPI.fit), :(LearnAPI.algorithm), :(LearnAPI.minimize), :(LearnAPI.obs), 
:(LearnAPI.features), :(LearnAPI.target), :(LearnAPI.predict), :(LearnAPI.coefficients))

Train:

julia> model = fit(algorithm, data)

Predict:

julia> predict(model, data)[1]
"virginica"

Predict a probability distribution (proxy for the target):

julia> predict(model, Distribution(), data)[1]
UnivariateFinite{Multiclass{3}}(setosa=>0.0, versicolor=>0.25, virginica=>0.75)

Credits

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