API
Training
MLJModelInterface.fit Function
julia
function fit(
config::NeuroTypes,
dtrain;
feature_names,
target_name,
weight_name=nothing,
offset_name=nothing,
deval=nothing,
print_every_n=9999,
verbosity=1,
)Training function of NeuroTreeModels' internal API.
Arguments
config::NeuroTypesdtrain: Must be<:AbstractDataFrame
Keyword arguments
feature_names: Required kwarg, aVector{Symbol}orVector{String}of the feature names.target_nameRequired kwarg, aSymbolorStringindicating the name of the target variable.weight_name=nothingoffset_name=nothingdeval=nothingData for tracking evaluation metric and perform early stopping.print_every_n=9999verbosity=1
Inference
NeuroTreeModels.infer Function
infer(m::NeuroTreeModel, data)
Return the inference of a NeuroTreeModel over data, where data is AbstractDataFrame.