c++神经网络计算所需的矩阵模板库
嗨,我正在实现一些神经网络算法,我需要一个矩阵库,我查看并发现有像 ( boost::ublas ) 、 (blitz++) 、 TNT 之类的库......我需要专家的意见一种适合(简单,易于编码,也许高性能)
hi i'm implementing some neural network algorithms and i'll be needing a matrix library, I've looked and found that there are ones like ( boost::ublas ) , (blitz++), TNT... I need experts opinion which one is suitable for (simple , easy coding, high performance maybe )
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有其他理由,我可能会选择 boost::ublas。老实说,我怀疑其中的大多数代码是否会对神经网络做出很大贡献,因此您选择哪一个可能不会产生巨大的差异。它们都只是充当简单的容器。
Absent some reason to do otherwise, I'd probably go with boost::ublas. To be honest, I doubt that most of the code in any of them is going to contribute a lot toward a neural network, so it probably won't make a huge difference which one you choose. They'll all just be acting as simple containers.