@@ -54,16 +54,15 @@ compared with censored ground truth survival times.
54
54
55
55
#### Definitions
56
56
57
- More generally, whenever we have a variable (e.g., a class label) that can (in principle)
58
- can be paired with a predicted value, or some predicted "proxy" for that variable (such as
59
- a class probability), then we call the variable a * target* variable, and the predicted
60
- output a * target proxy* . In this definition, it is immaterial whether or not the target
61
- appears in training (is supervised) or whether or not the model generalizes to new
57
+ More generally, whenever we have a variable (e.g., a class label) that can, at least in
58
+ principle, be paired with a predicted value, or some predicted "proxy" for that variable
59
+ (such as a class probability), then we call the variable a * target* variable, and the
60
+ predicted output a * target proxy* . In this definition, it is immaterial whether or not the
61
+ target appears in training (is supervised) or whether or not the model generalizes to new
62
62
observations ("learns").
63
63
64
64
LearnAPI.jl provides singleton [ target proxy types] (@ref proxy_types) for prediction
65
- dispatch in LearnAPI.jl. These are also used to distinguish performance metrics provided
66
- by the package
65
+ dispatch. These are also used to distinguish performance metrics provided by the package
67
66
[ StatisticalMeasures.jl] ( https://juliaai.github.io/StatisticalMeasures.jl/dev/ ) .
68
67
69
68
@@ -151,8 +150,9 @@ Only these method names are exported by LearnAPI: `fit`, `transform`, `inverse_t
151
150
[ ` LearnAPI.constructor ` ] ( @ref ) and [ ` LearnAPI.functions ` ] ( @ref ) are universally
152
151
compulsory.
153
152
154
- - [ ` LearnAPI.target ` ] ( @ref ) and [ ` LearnAPI.weights ` ] ( @ref ) are both traits and methods to
155
- extract, from ` fit ` input data, the target and per-observation weights, when available.
153
+ - [ ` LearnAPI.target ` ] ( @ref ) and [ ` LearnAPI.weights ` ] ( @ref ) are traits which also include
154
+ extended signatures for extracting, from ` fit ` input data, the target and
155
+ per-observation weights, when available.
156
156
157
157
---
158
158
0 commit comments