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
Copy file name to clipboardExpand all lines: docs/src/traits.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,8 +26,8 @@ In the examples column of the table below, `Continuous` is a name owned the pack
26
26
|[`LearnAPI.load_path`](@ref)`(algorithm)`| string locating name returned by `LearnAPI.constructor(algorithm)`, beginning with a package name | "unknown"` |`FastTrees.LearnAPI.DecisionTreeClassifier`|
27
27
|[`LearnAPI.is_composite`](@ref)`(algorithm)`|`true` if one or more properties of `algorithm` may be an algorithm |`false`|`true`|
28
28
|[`LearnAPI.human_name`](@ref)`(algorithm)`| human name for the algorithm; should be a noun | type name with spaces | "elastic net regressor" |
29
-
|[`LearnAPI.data_interface`](@ref)`(algorithm)`| Interface implemented by objects returned by [`obs`](@ref)|`Base.HasLength()` (supports `MLUtils.getobs/numobs`) |`Base.SizeUnknown()` (supports `iterate`) |
30
29
|[`LearnAPI.iteration_parameter`](@ref)`(algorithm)`| symbolic name of an iteration parameter |`nothing`|:epochs|
30
+
|[`LearnAPI.data_interface`](@ref)`(algorithm)`| Interface implemented by objects returned by [`obs`](@ref)|`Base.HasLength()` (supports `MLUtils.getobs/numobs`) |`Base.SizeUnknown()` (supports `iterate`) |
31
31
|[`LearnAPI.fit_observation_scitype`](@ref)`(algorithm)`| upper bound on `scitype(observation)` for `observation` in `data` ensuring `fit(algorithm, data)` works |`Union{}`|`Tuple{AbstractVector{Continuous}, Continuous}`|
32
32
|[`LearnAPI.target_observation_scitype`](@ref)`(algorithm)`| upper bound on the scitype of each observation of the targget |`Any`|`Continuous`|
33
33
|[`LearnAPI.predict_or_transform_mutates`](@ref)`(algorithm)`|`true` if `predict` or `transform` mutates first argument |`false`|`true`|
@@ -36,12 +36,12 @@ In the examples column of the table below, `Continuous` is a name owned the pack
36
36
37
37
The following are provided for convenience but should not be overloaded by new algorithms:
0 commit comments