Update Dataset type to support multilabel datasets
PatrickLaflamme opened this issue · 1 comments
PatrickLaflamme commented
Currently, the Dataset abstract class only supports single-class datasets. This is because of the getY
method defined here:
which only returns a single Float
per index, instead of a FloatData
.
zaleslaw commented
@PatrickLaflamme Could you give a case when it could be useful for KotlinDL? Did you try to do some cases?