https://github.com/jakubschwenkbeck/convolutional-neural-network
My first attempt on a Convolutional Neural Network written in Java. The CNN is trained with mnist data to recognize handwritten digits form 0-9
https://github.com/jakubschwenkbeck/convolutional-neural-network
cnn cnn-classification java mnist-classification
Last synced: 3 months ago
JSON representation
My first attempt on a Convolutional Neural Network written in Java. The CNN is trained with mnist data to recognize handwritten digits form 0-9
- Host: GitHub
- URL: https://github.com/jakubschwenkbeck/convolutional-neural-network
- Owner: JakubSchwenkbeck
- Created: 2024-07-08T15:35:19.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-12-29T15:19:04.000Z (5 months ago)
- Last Synced: 2025-01-12T15:08:36.976Z (5 months ago)
- Topics: cnn, cnn-classification, java, mnist-classification
- Language: Java
- Homepage:
- Size: 2.68 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Convolutional-Neural-Network
My first attempt on a Convolutional Neural Network written in Java. The CNN is trained with mnist data to recognize handwritten digits form 0-9
The CNN is built from three Layers: a fully-connected layer, a max-pooling layer and a convolution layer.