-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
API to construct MLJ-proper model from standalone model #159
Comments
Perhaps @tlienart may like to differ, but my understanding is that Now using MLJBase # to get pretty printing
# default model:
julia> ElasticNetRegressor()
ElasticNetRegressor(
lambda = 1.0,
gamma = 0.0,
fit_intercept = true,
penalize_intercept = false,
scale_penalty_with_samples = true,
solver = nothing)
# with a different `gamma` value:
julia> ElasticNetRegressor(gamma=0.1)
ElasticNetRegressor(
lambda = 1.0,
gamma = 0.1,
fit_intercept = true,
penalize_intercept = false,
scale_penalty_with_samples = true,
solver = nothing) Like other models, you can bind this with data in a machine, which you I presume that an |
it is documented as public API here https://juliaai.github.io/MLJLinearModels.jl/stable/api/#MLJLinearModels.ElasticNetRegression and furthermore the unless this entire package should be considered internal? |
I stand corrected. I had forgotten there is also a "native" API. In that case I hope @tlienart can answer your question. I am only familiar with the MLJ interface. |
The text was updated successfully, but these errors were encountered: