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.Point` | same as target observations; may have the interpretation of a 50% quantile, 50% expectile or mode |
26
-
| `LearnAPI.Sampleable` | object that can be sampled to obtain object of the same form as target observation |
27
-
| `LearnAPI.Distribution` | explicit probability density/mass function whose sample space is all possible target observations |
28
-
| `LearnAPI.LogDistribution` | explicit log-probability density/mass function whose sample space is possible target observations |
29
-
| `LearnAPI.Probability`¹ | numerical probability or probability vector |
30
-
| `LearnAPI.LogProbability`¹ | log-probability or log-probability vector |
31
-
| `LearnAPI.Parametric`¹ | a list of parameters (e.g., mean and variance) describing some distribution |
32
-
| `LearnAPI.LabelAmbiguous` | collections of labels (in case of multi-class target) but without a known correspondence to the original target labels (and of possibly different number) as in, e.g., clustering |
33
-
| `LearnAPI.LabelAmbiguousSampleable` | sampleable version of `LabelAmbiguous`; see `Sampleable` above |
34
-
| `LearnAPI.LabelAmbiguousDistribution` | pdf/pmf version of `LabelAmbiguous`; see `Distribution` above |
35
-
| `LearnAPI.LabelAmbiguousFuzzy` | same as `LabelAmbiguous` but with multiple values of indeterminant number |
36
-
| `LearnAPI.Quantile`² | same as target but with quantile interpretation |
37
-
| `LearnAPI.Expectile`² | same as target but with expectile interpretation |
| `LearnAPI.Continuous` | real-valued approximation/interpolation of a discrete-valued target, such as a count (e.g., number of phone calls) |
25
+
| `Point` | same as target observations; may have the interpretation of a 50% quantile, 50% expectile or mode |
26
+
| `Sampleable` | object that can be sampled to obtain object of the same form as target observation |
27
+
| `Distribution` | explicit probability density/mass function whose sample space is all possible target observations |
28
+
| `LogDistribution` | explicit log-probability density/mass function whose sample space is possible target observations |
29
+
| `Probability`¹ | numerical probability or probability vector |
30
+
| `LogProbability`¹ | log-probability or log-probability vector |
31
+
| `Parametric`¹ | a list of parameters (e.g., mean and variance) describing some distribution |
32
+
| `LabelAmbiguous` | collections of labels (in case of multi-class target) but without a known correspondence to the original target labels (and of possibly different number) as in, e.g., clustering |
33
+
| `LabelAmbiguousSampleable` | sampleable version of `LabelAmbiguous`; see `Sampleable` above |
34
+
| `LabelAmbiguousDistribution` | pdf/pmf version of `LabelAmbiguous`; see `Distribution` above |
35
+
| `LabelAmbiguousFuzzy` | same as `LabelAmbiguous` but with multiple values of indeterminant number |
36
+
| `Quantile`² | same as target but with quantile interpretation |
37
+
| `Expectile`² | same as target but with expectile interpretation |
38
+
| `ConfidenceInterval`² | confidence interval |
39
+
| `Fuzzy` | finite but possibly varying number of target observations |
40
+
| `ProbabilisticFuzzy` | as for `Fuzzy` but labeled with probabilities (not necessarily summing to one) |
41
+
| `SurvivalFunction` | survival function |
42
+
| `SurvivalDistribution` | probability distribution for survival time |
43
+
| `SurvivalHazardFunction` | hazard function for survival time |
| `LearnAPI.JointSampleable` | object that can be sampled to obtain a *vector* whose elements have the form of target observations; the vector length matches the number of observations in `data`. |
90
-
| `LearnAPI.JointDistribution` | explicit probability density/mass function whose sample space is vectors of target observations; the vector length matches the number of observations in `data` |
91
-
| `LearnAPI.JointLogDistribution` | explicit log-probability density/mass function whose sample space is vectors of target observations; the vector length matches the number of observations in `data` |
89
+
| `JointSampleable` | object that can be sampled to obtain a *vector* whose elements have the form of target observations; the vector length matches the number of observations in `data`. |
90
+
| `JointDistribution` | explicit probability density/mass function whose sample space is vectors of target observations; the vector length matches the number of observations in `data` |
91
+
| `JointLogDistribution` | explicit log-probability density/mass function whose sample space is vectors of target observations; the vector length matches the number of observations in `data` |
92
92
93
93
"""
94
94
abstract type Joint <:KindOfProxyend
@@ -108,9 +108,9 @@ single object representing a probability distribution.
108
108
109
109
| type `T` | form of output of `predict(model, ::T)` |
0 commit comments