如何在 .net 中使用经过训练的网络
您好,我将我的网络训练到 Matlab 神经网络工具箱中,我保存了它。我可以通过调用 sim(net,p) 将其用于 matlab 环境,但是如何将其导出到花药 .net 应用程序?
Hi I trained my network into Matlab neural network toolbox I save it.. I can used into matlab environment by calling sim(net,p) but How can I export it to anther .net apps ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您最好只导出网络的权重(等)元素,并在专为 .NET 设计的库中使用它们,例如 AForge.NET,而不是处理所有的互操作。
You might be better off exporting just the
weights
(etc.) element of the network and using them in a library designed for .NET like AForge.NET, rather than deal with all of the interop.