MLJModelInterface.jl
MLJModelInterface.jl copied to clipboard
Lightweight package to interface with MLJ
The fact that this is exported is necessitating a hack in MLJBase/src/MLJBase.jl to enable UnivariateFinite code to be replaced with CategoricalDistributions.jl as a dependency. And remove the doc-string as a...
I am not certain whether this is a Julia bug or something you need to fix here, but I think it's probably something you need to fix here. In any...
Indeed, this macro should not overload any trait that is not explicitly specified by the user, in my opinion. But in any case, `is_wrapper` is a model-specific trait, not necessarily...
I am wondering on the relationship (or lack there of) between `Base.nameof` and `MMI.human_name`. Should `Base.nameof` on model instances fall back to `MMI.human_name`? It is the function i tried to...
This is needed to fix some failing test in another package. See https://github.com/JuliaAI/FeatureSelection.jl/actions/runs/9059544029/job/24887362493?pr=5#step:6:523
It could be neat if MLJ implemented StatsAPI as to avoid duplicate function names ```julia-repl julia> using MLJBase, GLM julia> predict WARNING: both GLM and MLJBase export "predict"; uses of...
Hi, i was trying to implement the update method for laplaceredux but I am having a problem. this is the model ``` MLJBase.@mlj_model mutable struct LaplaceRegressor 0) batch_size::Integer = 32::(_...
Just wondering what the right strategy is for warm starts. What is the correct behavior for calling `fit!` on a machine _twice_? Here, I assume that the model has an...
The v1.11.1 version of MLJModelInterface has introduced REPL as a new dependency. As AWS Lambda doesn't support pseudo-terminal, precompilation of REPL always fails with this error: This has resulted in...