-
Hi,
Let me say to you that your code also run perfectly on linux with mono, so this enable your lub to run also on mac, solaris and in a bunch of architectures (even the Wii and iphone potentially), so you can add that info in the site ;-) .
Also to be posible to run examples like the OCR one, the file path separator for letters and networks files need to be changed from "\" to...
2009-07-28 20:29:12 UTC by buhochileno
-
I am developing an application with VB.NET and I have the same problem when I try loading a file.
I have the next exception: {"Exception has been thrown by the target of an invocation."}
Please, help me. Could you paste here any code snippet (for save and load proccess) on VB.NET?
Thanks a lot.
2009-06-26 15:28:01 UTC by azulin
-
I managed to do this with the code here:
https://sourceforge.net/forum/forum.php?thread_id=2508502&forum_id=560892
so I can Save my ANN to a file and Load it in the next startup of my application easily.
Thanks again.
2009-06-08 13:31:07 UTC by hamidude
-
hello
thank you! i used your code and it worked!
i could load/save from/to file.
Thanks.
2009-06-08 13:28:35 UTC by hamidude
-
hello
thanks for the great job
i needed to save the trained ANN to file and then load it back.
is there any method for doing so?
if there is not how should i do it?
thanks in advance.
2009-06-08 12:30:42 UTC by hamidude
-
Hello,
I am getting following exception when deserializing saved Kohonen SOM network from file.
The same code that I use for Serializing/DeSerializing works fine on BackpropogationNetwork
Exception: "Value cannot be null.\r\nParameter name: sourceNeuron"
Stack: " at NeuronDotNet.Core.Helper.ValidateNotNull(Object value, String name) in E:\\NeuronDotNet...
2008-11-10 15:01:33 UTC by okonovalenko
-
Thanks for reporting.
Fixed in NeuronDotNet 3.0.
2008-08-21 07:17:05 UTC by vijeth_d
-
The following code does not work for each value:
Helper.cs:105
randomOrder[i] ^= randomOrder[randomPosition];
randomOrder[randomPosition] ^= randomOrder[i];
randomOrder[i] ^= randomOrder[randomPosition];
It could be replaced like this:
int swapValue = randomOrder[randomPosition];
randomOrder[randomPosition] = randomOrder[i];
randomOrder[i] = swapValue;.
2008-01-18 22:57:48 UTC by nobody
-
Anonymous committed patchset 1 of module CVSROOT to the NeuronDotNet - Neural Networks in C# CVS repository, changing 11 files.
2006-04-10 21:11:02 UTC by nobody
-
vijeth_d registered the NeuronDotNet - Neural Networks in C# project.
2006-04-10 20:23:53 UTC by vijeth_d