File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ const ABSTRACT_MODEL_SUBTYPES = [
4141 :Probabilistic ,
4242 :Deterministic ,
4343 :Interval ,
44+ :ProbabilisticSet ,
4445 :JointProbabilistic ,
4546 :Static ,
4647 :Annotator ,
@@ -143,6 +144,7 @@ abstract type Annotator <: Model end
143144abstract type Probabilistic <: Supervised end
144145abstract type Deterministic <: Supervised end
145146abstract type Interval <: Supervised end
147+ abstract type ProbabilisticSet <: Supervised end
146148
147149abstract type JointProbabilistic <: Probabilistic end
148150
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ StatTraits.is_supervised(::Type{<:SupervisedAnnotator}) = true
2727StatTraits. prediction_type (:: Type{<:Deterministic} ) = :deterministic
2828StatTraits. prediction_type (:: Type{<:Probabilistic} ) = :probabilistic
2929StatTraits. prediction_type (:: Type{<:Interval} ) = :interval
30+ StatTraits. prediction_type (:: Type{<:ProbabilisticSet} ) = :probabilistic_set
3031StatTraits. prediction_type (:: Type{<:ProbabilisticDetector} ) = :probabilistic
3132StatTraits. prediction_type (:: Type{<:DeterministicDetector} ) = :deterministic
3233
You can’t perform that action at this time.
0 commit comments