A lightweight neural network project for recognizing handwritten text using the MNIST dataset.
gradle init --type java-application --dsl groovycd text-recognition
# Add neural-network as submodule
git submodule add https://github.com/RivoLink/neural-network libs/neural-network
# Initialize and update
git submodule init
git submodule updatecd libs/neural-network
# Build with clean (recommended first time)
./scripts/build.sh --clean --target=11
# Output location: dist/neural-network.jar
# Also creates: dist/neural-network-sources.jar
# Check JAR contents
jar tf dist/neural-network.jar
# Check JAR size
ls -lh dist/neural-network.jar