Questions tagged [neuroph]

Neuroph is a java API for neural networks.

More info at http://neuroph.sourceforge.net/

11 questions
2
votes
0 answers

Java library unable to import from itself (netbeans, neuroph)

I have a project in which I use the neuroph library to create neural networks (http://neuroph.sourceforge.net/, version 2.96). I also wanted to use the neat preview library (https://sourceforge.net/projects/neuroph/files/NEAT-preview/, version 0.9),…
JKRP
  • 21
  • 3
1
vote
0 answers

Implementing a Basic Neural Network to Perform Classification with Neuroph

I'm very new to neural networks, and decided to try implementing a basic one using Neuroph in Java to perform multiclass classification using Multilayer Perceptron. public static void main(String[] args) { final MultiLayerPerceptron…
1
vote
2 answers

How to modifiy path for JDK for NeurophStudio

I tried do install NeurophStudio on Win 10, but when i try to run it i got this message I installed this program on my hard drive, but my windows is installed on my SSD. How can i change --jdkhome destination on NeurophStudio, because i didnt…
Sinor Bodl
  • 73
  • 2
  • 11
1
vote
0 answers

Face recognition ANN project by Neurpoh Studio gets "No enum constant error"

I working on a face recognition project to learn Artifical Neural Network logic. When I was applying steps, I got the following error: No enum constant org.neuroph.util.TransferFunctionType.SİGMOİD error at Step 3.1 that setting multi-layer…
1
vote
0 answers

MultiLayerPerceptron - arbitrary way to detect superfluous inputs

I am using a MultiLayerPerceptron network (of the Neuroph API). It has 65 inputs. The network is properly trained and does what it should do. However probably the neural network could do the same with only half of the inputs. I am looking for an…
bvdb
  • 22,839
  • 10
  • 110
  • 123
0
votes
1 answer

Cannot load Neuroph Library - Class Not Found

import org.neuroph.core.NeuralNetwork; import org.neuroph.nnet.Perceptron; //import org.neuroph.core.learning.DataSet; //import org.neuroph.core.learning.DataSetRow; class Main { public static void main(String[] args){ NeuralNetwork…
0
votes
1 answer

Neuroph API Custom Network Not Configured Correctly (Outputs 0)

I'm trying to build a custom neural network the Neuroph API. In the constructor, I've added all my layers and connected them but, even before I train it, it constantly outputs 0 no matter what the inputs are. The class is below. Am I missing any…
Pieter Svenson
  • 171
  • 1
  • 9
0
votes
0 answers

Training neuroph ai throwing nullpointerexception

I am very interested in ai and wanted to create my own, so I watched some videos and found a good library. For my first ai, it is very simple. I did this to get a grip on the library and how it works for more complex things in the future. All this…
0
votes
1 answer

Code gives me VectorSizeMismatchException using Neuroph

I know how to code using java but I'm new on Neuroph I got an VectorSizeMismatchException with these codes. Main: https://pastebin.com/dntWRMZN public static void main(String[] args) { …
PleaseHelpMe
  • 1
  • 1
  • 3
0
votes
1 answer

Add sourceforge dependency to Gradle project

I am trying to add neuroph to my Gradle project but am having a bit of trouble. The following is the maven dependency xml that the project provides. neuroph.sourceforge.net
0
votes
0 answers

Android Studio ClassNotFoundException

After importing external libs to my project every time I run project i get ClassNotFoundException: 06-09 18:22:49.759 12976-13005/? E/AndroidRuntime: FATAL EXCEPTION: dataLoader Process: prm.soundpaint, PID:…
marvin421
  • 13
  • 3