We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, the Dataset abstract class only supports single-class datasets. This is because of the getY method defined here:
getY
https://github.com/Kotlin/kotlindl/blob/master/dataset/src/jvmMain/kotlin/org/jetbrains/kotlinx/dl/dataset/Dataset.kt#L23
which only returns a single Float per index, instead of a FloatData.
Float
FloatData
The text was updated successfully, but these errors were encountered:
@PatrickLaflamme Could you give a case when it could be useful for KotlinDL? Did you try to do some cases?
Sorry, something went wrong.
No branches or pull requests
Currently, the Dataset abstract class only supports single-class datasets. This is because of the
getY
method defined here:https://github.com/Kotlin/kotlindl/blob/master/dataset/src/jvmMain/kotlin/org/jetbrains/kotlinx/dl/dataset/Dataset.kt#L23
which only returns a single
Float
per index, instead of aFloatData
.The text was updated successfully, but these errors were encountered: