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
Complete rookie here
I just spent couple of hours trying to figure out the tutorial. Following code works only with org.jetbrains.kotlinx:kotlin-deeplearning-api:0.4.0 dependency or below. And in stable version (currently 0.5.2) Sequential model is absent. Or I'm missing out how to reach it.
val model = Sequential.of(
Input(28,28,1),
Flatten(),
Dense(300),
Dense(100),
Dense(10)
)
took me some time to figure out the needed libs and imports for getting the example to run - the example should mention this clearly:
https://github.com/Kotlin/kotlindl/blob/master/docs/create_your_first_nn.md
Getting TensorFlow to run from Kotlin on MacOS X ARM64 is another story... seems the only way is to compile it yourself:(
The text was updated successfully, but these errors were encountered: