Ada 中的 AI 库框架
我正在寻找一个 Ada 构建的人工智能框架。我认为 Ada 由于其任务分配和实时机制而非常适合实现时态和随机范例,但没有找到任何人尝试制作这样的库。实际上我也没有在其他语言上找到强大的实现。对于 C#,我发现 http://www.c-sharpcorner.com/1/56/,对于 C++,我发现 http://mind.sourceforge.net/cpp.html但两人都没有得到太多受欢迎程度。也许java也有很好的AI库,但我不知道。那么,您知道 Ada 实现吗?它对更多人有用吗?例如,如果您了解其他语言的库,那么了解并比较 java 中的实现模型将会很有用。谢谢。
I'm looking for an Ada constructed framework for AI. I think Ada would be perfect for implementing temporal and stochastic paradigms due to its tasking and real-time mechanisms, but did not find anyone who tried to make such a libraries. Actually I did not find strong implementations on other languages too. For C# I found http://www.c-sharpcorner.com/1/56/, and for C++ I found http://mind.sourceforge.net/cpp.html but both did not get much popularity. Maybe java has good AI libraries too, but I do not know. So, do you know an Ada implementation? Would it be useful for more anyone? If you know libraries from other languages, it would be useful to know and compare the implementation models in java, for example. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这里有一些资源:
书,虽然很旧(1989):Artificial Intelligence With Ada< /a>
看起来像某种大学生论文:MUTANTS:Ada 95 的通用遗传算法工具包
Dmitry Kazakov 的AI 的东西,大多是模糊的逻辑。 (德米特里(Dmitry)编写了非常很好的软件。)
Here's a few resources:
Book, rather old, though (1989): Artificial Intelligence With Ada
Looks like some kind of university student dissertation: MUTANTS: A generic genetic algorithm toolkit for Ada 95
Dmitry Kazakov's AI stuff, mostly fuzzy logic. (Dmitry writes really nice software.)
我曾经有一个学校 AI 项目,该项目使用 CLIPS AI 构建器库。
由于我避免在不必要的情况下使用 C 进行编码,因此我做了一个 Ada 绑定到它,我相信它是不受限制的许可的。如果你想要的话,就来吧。
我用它构建了一个专家系统,能够播放用户的开局动作帝国。所有代码要么采用 Ada,要么采用 Clips 的专家系统规范语言。
I once had a school AI project that used the CLIPS AI builder library.
Since I avoid coding in C where I don't have to, I made an Ada Binding to it, which I believe is licensed without restriction. If you want it, have at.
I used it to build an expert system capable of playing a user's opening moves in Empire. All the code is either in Ada, or Clips' expert system specification language.
这里是一个可能有用的 Java 库。我还没有听说过任何 Ada 库。不过,Ada 是一门很棒的语言。
这里有一些遗传信息。
Here's a potentially useful Java library. I haven't heard of any Ada libraries. Ada is a great language, though.
Here's some genetic stuff.