Neuroph is an open source Java neural network framework and Development Environment for neural networks. It contains well designed, open source Java library with small number of basic classes which correspond to basic NN concepts, which makes it perfect for beginners and education. Also it provides nice GUI neural network editor and wizards to quickly create Java neural network components, along with various visualization tools. It has been released as open source under the Apache 2.0 license.
Copy/Paste following code into your pom.xml file
<repositories>
<repository>
<id>neuroph.sourceforge.net</id>
<url>http://neuroph.sourceforge.net/maven2/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.neuroph</groupId>
<artifactId>neuroph-core</artifactId>
<version>2.96</version>
</dependency>
</dependencies>
Click: Main Menu > Team > Git > Clone
For Repository URL enter https://github.com/neuroph/NeurophFramework.git
Click Finish
Right click cloned project, and click Build
git clone https://github.com/neuroph/NeurophFramework.git
cd neuroph
mvn