使用 ruby 进行情感分析
任何具有使用 liblinear
算法进行情感分析经验的人。有人使用过 liblinear-ruby-swig gem 吗?
请建议我从什么开始。
Any one with sentient analysis experience with liblinear
algorithm. Any one have used liblinear-ruby-swig gem?
Please suggest me something to start with.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我经常使用 lib Linear 进行其他分类,而不是进行情感分析
您有兴趣使用 lib Linear 或进行情感分析吗?
对于简单的情绪分析,请查看
https://chrismaclellan.com/blog/sentiment-analysis-of-使用 ruby 发推文
I used lib linear a lot for other classification not for sentiment analysis
Are you interested in using lib linear or to do sentiment analysis?
For simple sentiment analysis look at
https://chrismaclellan.com/blog/sentiment-analysis-of-tweets-using-ruby
Sad_panda gem (https://rubygems.org/gems/sad_panda) 类似于我拥有的 R 库过去使用过。它具有用于文本极性和情感分类的工具(如“悲伤”、“愤怒”、“快乐”等)。
sad_panda gem (https://rubygems.org/gems/sad_panda) is similar to an R library I have used in the past. It has tools for both polarity and emotion classification of text (as "sadness", "anger", "joy", a few others).
一般来说,Ruby 中没有太多用于情感分析或机器学习的工作。最好的机器学习库之一是 weka,所以你可以考虑使用它与朱比。
也就是说,我已经创建了一个入门级 gem,我计划通过移植一些 weka 算法来增强它在红宝石中。
There is not much work in ruby for sentiment analysis or machine learning in general. One of the best machine learning library is weka, so you can consider using it with jruby.
That said I have created an entry level gem, I am planning to enhance it by porting some of the weka algorithms in ruby.