易于使用的神经网络 Perl 模块
在我正在从事的一个项目中,我遇到了一个决策问题,并且我的所有尝试都没有给出令人满意的结果:使用特定于领域的知识,尝试生成统计数据并创建统计模型等。
我现在拥有有关神经网络的基本知识我想尝试一下这种方法是否会产生一些好的结果。我有很多数据,所以我想要的基本上就是建立一个简单的神经网络,训练它并看看我得到什么。
你知道有什么合适的 Perl 模块可以用于此目的吗?我找到了一些,但我不想浪费时间尝试所有这些。
In a project that I'm working on I have a decision problem and none of my attempts have given satisfying results: using domain specifik knowledge, trying to generate statistics and creating a statistical model etc etc.
I have basic knowledge about neural networks, now I want to try if that approach might yield some good results. I have a lot of data so all I want is basically to set up a simple NN, train it and see what I get.
Do you know about any decent Perl modules that might use for this purpose? I've found a few but I'd hate to waste my time trying all of them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有几个,但我会从
AI::NeuralNet::Simple
开始。在 CPAN 上,AI 命名空间还有很多其他命名空间,有些是 C 库的包装器,有些是奇特的神经网络事物,但这是一个简单的基础。而且它有很好的文档记录,但其他一些警告的情况并非如此:没有一个神经网络模块得到很好的维护或广泛的测试。这明确指出它是 alpha 代码,不用于生产用途。对于概念验证来说,应该没问题。
There are several, but I'd start with
AI::NeuralNet::Simple
. On CPAN, the AI namespace has a whole bunch of others, some are wrappers for C libraries, others do fancy neural net things, but this is a simple base to start with. And it is well documented, which is not the case for some of the othersCaveats: none of the NN modules is that well maintained or widely tested. This one explicitly states that it is alpha code not for production use. For a proof-of-concept, it should be fine.
我会使用 AI::FANN ,你也可以在 CPAN 上找到它。
I'd use AI::FANN , you can find it on CPAN as well.