https://github.com/bcdev/jnn
Backpropagation neural-network API for Java
https://github.com/bcdev/jnn
Last synced: 3 months ago
JSON representation
Backpropagation neural-network API for Java
- Host: GitHub
- URL: https://github.com/bcdev/jnn
- Owner: bcdev
- License: mit
- Created: 2010-03-31T14:57:06.000Z (about 16 years ago)
- Default Branch: master
- Last Pushed: 2018-06-14T11:24:07.000Z (about 8 years ago)
- Last Synced: 2025-09-09T14:15:51.693Z (10 months ago)
- Language: Java
- Homepage:
- Size: 94.7 KB
- Stars: 11
- Watchers: 5
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: License.txt
Awesome Lists containing this project
README
JNN is a Java library for neural network processing.
The module also defines a neural network exchange format "NNA",
a plain text format used to read and write neural networks.
Changelog:
From 1.6 to 1.7
* Added support for NNs trained and formatted by Helmut Schiller (was formerly located in beam-meris-glint module).
Code is in package org.esa.beam.nn (todo: use Schiller's original packlage path).
From 1.5 to 1.6
* JNN is not thread-safe. So we made JnnNet and JnnLayer clonable. Client code can now instantiate
thread-local copies a net in order to run several net instances in parallel.