设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 重新 试卷 文件
当前位置: 首页 > 运营中心 > 建站资源 > 优化 > 正文

燃爆!17行Python代码做情感分析?你也可以的(3)

发布时间:2019-06-28 16:36 所属栏目:21 来源:IT世界圈
导读:input test_text=[ '这车耗油很快', '这车开的很快', '这房间有一股死老鼠味道', '这房间有烟味', '他的发型像杀马特', '这衣服机洗掉色', '这衣服穿多了起球', '这软件容易闪退', '他打球的样子像蔡徐坤', '这把20

input

  1. test_text = [ 
  2.  '这车耗油很快',  
  3.  '这车开的很快', 
  4.  '这房间有一股死老鼠味道', 
  5.  '这房间有烟味', 
  6.  '他的发型像杀马特', 
  7.  '这衣服机洗掉色', 
  8.  '这衣服穿多了起球', 
  9.  '这软件容易闪退', 
  10.  '他打球的样子像蔡徐坤', 
  11.  '这把20了', 
  12.  '这把可以打', 
  13.  '他射球的样子像科比', 
  14.  '这房间的布置很有情调', 
  15.  '这酒让人回味', 
  16.  '这衣服很酷', 
  17.  '他的侧脸好像林峰', 
  18.  '五星好评', 
  19.  '以后会回购的', 
  20.  '性价比很高', 
  21.  '物美价廉', 
  22.  '这女生让我心动' 
  23.  ] 

output

  1. 运行耗时: 2秒676毫秒 
  2. text: 这车耗油很快, positive_prob: 0.2926, predict: negative 
  3. text: 这车开的很快, positive_prob: 0.8478, predict: positive 
  4. text: 这房间有一股死老鼠味道, positive_prob: 0.0071, predict: negative 
  5. text: 这房间有烟味, positive_prob: 0.2071, predict: negative 
  6. text: 他的发型像杀马特, positive_prob: 0.3445, predict: negative 
  7. text: 这衣服机洗掉色, positive_prob: 0.3912, predict: negative 
  8. text: 这衣服穿多了起球, positive_prob: 0.679, predict: positive # 错误 
  9. text: 这软件容易闪退, positive_prob: 0.0051, predict: negative 
  10. text: 他打球的样子像蔡徐坤, positive_prob: 0.8684, predict: positive # 错误 
  11. text: 这把20了, positive_prob: 0.1695, predict: negative 
  12. text: 这把可以打, positive_prob: 0.3503, predict: negative # 错误 
  13. text: 他射球的样子像科比, positive_prob: 0.7263, predict: positive 
  14. text: 这房间的布置很有情调, positive_prob: 0.9519, predict: positive 
  15. text: 这酒让人回味, positive_prob: 0.7431, predict: positive 
  16. text: 这衣服很酷, positive_prob: 0.9817, predict: positive 
  17. text: 他的侧脸好像林峰, positive_prob: 0.5621, predict: positive 
  18. text: 五星好评, positive_prob: 0.9971, predict: positive 
  19. text: 以后会回购的, positive_prob: 0.6903, predict: positive 
  20. text: 性价比很高, positive_prob: 0.9799, predict: positive 
  21. text: 物美价廉, positive_prob: 0.9542, predict: positive 
  22. text: 这女生让我心动, positive_prob: 0.956, predict: positive 

正确率:17/20 = 85%

总结,三个不同类别的测评如下所示:

燃爆!17行Python代码做情感分析?你也可以的

总结

1.模型计算耗时较小,使用体验不错。

(编辑:ASP站长网)

网友评论
推荐文章
    热点阅读