上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 41 下一页
摘要: 情感分析简介: 情感分析就是分析一句话说得是很主观还是客观描述,分析这句话表达的是积极的情绪还是消极的情绪。原理比如这么一句话:“这手机的画面极好,操作也比较流畅。不过拍照真的太烂了!系统也不好。”① 情感词要分析一句话是积极的还是消极的,最简单最基础的方法就是找出句子里面的情感词,积极的情感词比如 阅读全文
posted @ 2017-04-29 14:17 宝山方圆 阅读(25754) 评论(0) 推荐(1)
摘要: 1. 准备好文本数据 2. pip install jieba 3. pip install wordcloud 4. 下载字体例如Songti.ttc(mac系统下的称呼,并将字体放在项目文件夹下) from os import path from scipy.misc import imread 阅读全文
posted @ 2017-04-29 13:08 宝山方圆 阅读(1475) 评论(0) 推荐(0)
摘要: MongoDB做集群,版本3.2官网推荐的集群方式Replica Set 准备服务器3台 两个standard节点(这两个节点直接可以互切primary secondary)。 一个arbiter节点,它手中握着一张选票,决定上面两个standard节点中的哪一个可以成为primay。 机器名称和预 阅读全文
posted @ 2017-04-28 21:40 宝山方圆 阅读(2132) 评论(0) 推荐(0)
摘要: 一种方法: File --> Default Setting --> 选中Project Interpreter中的一个python版本-->点击右边锯齿形图标(设置)-->选择more-->选择刚才选中的那个python版本-->点击最下方编辑(也就是增加到这个python版本下)-->点击➕-- 阅读全文
posted @ 2017-04-28 00:59 宝山方圆 阅读(3075) 评论(0) 推荐(0)
摘要: set @today='2017-04-25';set @ydate=DATE_SUB(@today, INTERVAL 7 day);select @today, @ydate; 待续。。。。 阅读全文
posted @ 2017-04-26 11:42 宝山方圆 阅读(239) 评论(0) 推荐(0)
摘要: 如更新忘记更新此文档,请参考链接: http://note.youdao.com/noteshare?id=d9b4d5c0f5991c63c5b8ae965722f619 阅读全文
posted @ 2017-04-25 15:10 宝山方圆 阅读(1204) 评论(0) 推荐(0)
摘要: 通过yum安装的mysql,启动和增加数据库,增加数据如下: [root@wucl-4 lib]# systemctl start mariadb [root@wucl-4 lib]# mysql -uroot Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 2 ... 阅读全文
posted @ 2017-04-25 14:23 宝山方圆 阅读(1368) 评论(0) 推荐(0)
摘要: 创建用户 db.createUser({user: "abc",pwd: "abc123",roles: [ { role: "readWrite", db: "test" } ]}); db.system.users.remove({user:"abc"}) MongoDB导出数据 mongoex 阅读全文
posted @ 2017-04-24 20:18 宝山方圆 阅读(229) 评论(0) 推荐(0)
摘要: 参考和测试网站:http://grokdebug.herokuapp.com 例如:test-39.dev.abc-inc.com Mon Apr 24 13:53:58 CST 2017 2017-04-16 23:37:44,282 [DEBUG] add service:com.abc.ope 阅读全文
posted @ 2017-04-24 15:04 宝山方圆 阅读(4475) 评论(0) 推荐(0)
摘要: 1.MySQL 5.7 for MAC 默认没有my.cnf文件 ,首先 新建my.cnf文件; 2.在my.cnf文件追加 1 2 3 4 5 6 7 8 [mysqld] character-set-server=utf8mb4 [client] default-character-set=ut 阅读全文
posted @ 2017-04-22 15:58 宝山方圆 阅读(784) 评论(0) 推荐(0)
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 41 下一页