You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[`LearnAPI.target_proxy`](@ref)`(model)`|`NamedTuple()`| details form of target proxy output |`(; predict=LearnAPI.Distribution()`|
11
10
|[`LearnAPI.position_of_target`](@ref)`(model)`|`0`| † the positional index of the **target** in `data` in `fit(..., data...; metadata)` calls | 2 |
12
11
|[`LearnAPI.position_of_weights`](@ref)`(model)`|`0`| † the positional index of **observation weights** in `data` in `fit(..., data...; metadata)`| 3 |
13
12
|[`LearnAPI.descriptors`](@ref)`(model)`|`()`| lists one or more suggestive model descriptors from `LearnAPI.descriptors()`| (:classifier, :probabilistic) |
14
13
|[`LearnAPI.is_pure_julia`](@ref)`(model)`|`false`| is `true` if implementation is 100% Julia code |`true`|
15
14
|[`LearnAPI.pkg_name`](@ref)`(model)`| "unknown" | name of package providing core algorithm (may be different from package providing LearnAPI.jl implementation) | "DecisionTree" |
16
-
|[`LearnAPI.doc_url`](@ref)`(model)`| "unknown" | url providing documentation of the core algorithm | "https://en.wikipedia.org/wiki/Decision_tree_learning"|
17
15
|[`LearnAPI.pkg_license`](@ref)`(model)`| "unknown" | name of license of package providing core algorithm | "MIT" |
16
+
|[`LearnAPI.doc_url`](@ref)`(model)`| "unknown" | url providing documentation of the core algorithm | "https://en.wikipedia.org/wiki/Decision_tree_learning"|
18
17
|[`LearnAPI.load_path`](@ref)`(model)`| "unknown" | a string indicating where the struct `typeof(model)` is defined, beginning with name of package providing implementation |`FastTrees.LearnAPI.DecisionTreeClassifier`|
19
-
|[`LearnAPI.is_wrapper`](@ref)`(model)`|`false`| is `true` if one or more hyperparameters are themselves models |`true`|
18
+
|[`LearnAPI.is_wrapper`](@ref)`(model)`|`false`| is `true` if one or more properties (fields) are themselves models |`true`|
20
19
|[`LearnAPI.fit_keywords`](@ref)`(model)`|`()`| tuple of symbols for keyword arguments accepted by `fit` (metadata) |`(:class_weights,)`|
21
20
|[`LearnAPI.human_name`](@ref)`(model)`| type name with spaces | human name for the model; should be a noun | "elastic net regressor" |
22
21
|[`LearnAPI.iteration_parameter`](@ref)`(model)`| nothing | symbolic name of an iteration parameter |:epochs|
0 commit comments