File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ for M in ABSTRACT_MODEL_SUBTYPES
21
21
@eval (StatisticalTraits. abstract_type (:: Type{<:$M} ) = $ M)
22
22
end
23
23
24
- StatisticalTraits. fit_data_scitype (M:: Type{<:Model} ) = input_scitype (M)
24
+ StatisticalTraits. fit_data_scitype (M:: Type{<:Model} ) = Tuple{ input_scitype (M)}
25
25
StatisticalTraits. fit_data_scitype (:: Type{<:Static} ) = Tuple{}
26
26
function StatisticalTraits. fit_data_scitype (M:: Type{<:Supervised} )
27
27
I = input_scitype (M)
Original file line number Diff line number Diff line change 138
138
139
139
@test fit_data_scitype (P2 ()) ==
140
140
Tuple{Table (Continuous),AbstractVector{<: Multiclass }}
141
- @test fit_data_scitype (U2 ()) == Table (Continuous)
141
+ @test fit_data_scitype (U2 ()) == Tuple{ Table (Continuous)}
142
142
@test fit_data_scitype (S2 ()) == Tuple{}
143
143
end
144
144
You can’t perform that action at this time.
0 commit comments