
杂货
王先森Ku
菜鸟要变大鸟
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Ubuntu系统在文件夹内容中查找包含关键字的文件
命令格式: find 查找路径 -name "*" | xargs grep "关键字" eg.1 find / -name '*' | xargs grep 'route' 在根文件夹下查找含有关键字route的文件,列出文件名和route所在行 eg.2 find / -name '*.txt' | xar...转载 2018-08-17 15:56:02 · 2995 阅读 · 0 评论 -
'detected Windows; aliasing chunkize to chunkize_serial'警告问题解决
问题描述:最近在进行句子相似度方面学习的时候,引入gensim总是有一个警告问题“ detected Windows; aliasing chunkize to chunkize_serial ”UserWarning: detected Windows; aliasing chunkize to chunkize_serial warnings.warn("detected Win...原创 2019-01-11 10:22:27 · 1206 阅读 · 0 评论 -
Jupyter Notebook基础入门使用技巧
Jupyter Notebook是以网页的形式打开,可以在网页页面中直接编写代码和运行代码,代码的运行结果也会直接在代码块下显示。如在编程过程中需要编写说明文档,可在同一个页面中直接编写,便于作及时的说明和解释。启动Jupyter Notebook在文件所在目录使用终端使用如下命令:jupyter notebook常用快捷键命令如下: 执行当前cell,并自动跳到下一个ce...原创 2019-06-13 16:23:16 · 411 阅读 · 0 评论 -
聊天机器人Chatterbot学习测试使用(一)
#!/usr/bin/python# -*- coding: utf-8 -*-from chatterbot import ChatBotfrom chatterbot.trainers import ChatterBotCorpusTrainermy_bot = ChatBot("Training demo")trainer = ChatterBotCorpusTrainer(m...原创 2019-06-17 16:55:35 · 633 阅读 · 0 评论