Neural Network on Windows Phone 8.0

[亡魂溺海] 提交于 2019-12-25 12:51:42

问题


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.)


回答1:


Looks like the official version which is on Nuget does not support Windows Phone. Check this link: http://www.aforgenet.com/forum/viewtopic.php?f=2&t=3061



来源:https://stackoverflow.com/questions/23717779/neural-network-on-windows-phone-8-0

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!