-
and what type is your nnet object ?.
2009-05-23 07:02:09 UTC in Java Object Oriented Neural Engine
-
I found out. Forgot to setRows for hidden and output layer
my whole working test case:
@Test
public void testNeuralNetDelay() {
double[] data = { 1.0 };
DelayLayer iLayer = new DelayLayer();
iLayer.setLayerName("IN-DELAYED");
Layer hLayer = new TanhLayer();
hLayer.setLayerName("HID-TANH");
Layer oLayer = new TanhLayer();...
2008-10-29 11:04:36 UTC in Java Object Oriented Neural Engine
-
Hi all,
what could be wrong with following code ?
DelayLayer iLayer = new DelayLayer();
TanhLayer hLayer = new TanhLayer();
TanhLayer oLayer = new TanhLayer();
NeuralNet nn1 = new NeuralNet();
iLayer.setRows(1);
iLayer.setTaps(4);
FullSynapse synapse1 = new FullSynapse();
FullSynapse synapse2 = new FullSynapse();
iLayer.addOutputSynapse(synapse1);...
2008-10-28 23:05:45 UTC in Java Object Oriented Neural Engine
-
Oops!,
I didn't look properly earlier. It does. :-)
2008-10-26 22:00:23 UTC in Java Object Oriented Neural Engine
-
Hi,
Is there some specific reason why this project almost doesn't use sourceforge tracker for things like tasks, bugs, requests etc ?
I think it is possible to connect i.e. Mylyn (which I believe is available for every major java IDE) to SF tracker and therefore have all tasks/requests/bugs available at one's hand directly in IDE.
2008-10-26 20:40:52 UTC in Java Object Oriented Neural Engine
-
Hi,
could anyone explain the structure of the CVS repository ?
There is several projects/dirs but it is not obvious what is
each dirs purpose. i.e. what is difference between joone, Joone and .. pristine etc.
Thanks.
2008-10-26 20:30:32 UTC in Java Object Oriented Neural Engine
-
Hello all,
currently I am looking for an example how to present a pattern to a network and how to get the result.
I don't want to use file input/output. I tried to use getAllInputs / getAllOuputs but it somehow returns null. Also I noticed following warning when calling nnet.addLayer (input and output layer only):
[main] [WARN] - org.joone.engine.Layer - Null vector provided in...
2008-10-07 10:30:49 UTC in Java Object Oriented Neural Engine
-
Hi all!
Is it possible to generate/export java source code from gui editor ?
Or any plans to implement it ?
Thanks.
2008-10-06 17:59:43 UTC in Java Object Oriented Neural Engine