I am trying neural network application on Windows Phone 8. And I am writing below code:
ActivationNetwork network = null; //global variable
network = new ActivationNetwork(
new BipolarSigmoidFunction(2), //aktivation func.
9, //input count
20, //hidden layer count
1 //output count
);
This code working on desktop project.(C#) But not working Windows Phone 8.
This is Aforge Framework's function. I installed via nuget.
When I clicked run I am getting error. My error code:
An exception of type 'System.TypeLoadException' occurred in PanoramaApp2.DLL but was not handled in user code Additional information: Type 'AForge.Neuro.BipolarSigmoidFunction' from assembly 'AForge.Neuro, Version=2.2.5.0, Culture=neutral, PublicKeyToken=2094f4ea39731d4f' is attempting to implement an inaccessible interface.
What is my problem?
How can i succeed?
Thanks in advance. (sorry my language.)