In my previous article, I showed how you can train...
# datascience
z
In my previous article, I showed how you can train a linear regression model in Kotlin using Tensorflow API. This time I decided to tackle something a bit more complex, like convolutional networks. In this article I’ll show you how you can train a LeNet model in Kotlin. https://medium.com/@zaleslaw/lenet-5-in-kotlin-with-tensorflow-b84a8ce7b6a7 It's a first LeNet training and evaluation implementation on JVM language for TensorFlow 1.15 (the Java version is available too) Don't forget to clap to the paper and star the Github repository! https://github.com/zaleslaw/KotlinDeepLearningTutorial/blob/master/src/main/kotlin/tensorflow/training/mnist/lenet/LeNetMnistWithoutRefactoring.kt https://github.com/zaleslaw/KotlinDeepLearningTutorial/blob/master/src/main/java/tensorflow/LeNetMnistJava.java
👍 8