Natural Language Toolkit http://www.nltk.org/book/ 干货!详述Python NLTK下如何使用stanford NLP工具包 ...
分类:
其他好文 时间:
2020-06-25 09:57:08
阅读次数:
48
1、.ini 1)格式: [section] >区域名 Option = value >选项名等于值 2)读取.ini文件 A.引入configparser.py中的ConfigParser类 B.实例化:conf = ConfigParser() C.读取配置文件:read()方法 conf.re ...
分类:
其他好文 时间:
2020-06-24 12:24:47
阅读次数:
50
环境LNMP php 7.3 mysql 5.6 报错 SQLSTATE[HY000]: General error: 1128 Function 'ngram' is not defined (SQL: CREATE FULLTEXT INDEX content ON `testposts` (` ...
分类:
数据库 时间:
2020-06-21 13:40:44
阅读次数:
75
开始写后端工程: cnpm i express body-parser jwt-simple cors express-session connect-mongo mongoose -S ...
分类:
其他好文 时间:
2020-06-19 23:10:37
阅读次数:
92
我在使用BeautifulSoup的时候对于html的解析器选择了lxml soup = BeautifulSoup(r.text, "lxml") 然后就报错了,Baidu和Google后都没有找到太满意的答案,他们的做法有的是将解析器更改成原生的Python解析器,还有的就是一些对我没有太大帮组 ...
分类:
其他好文 时间:
2020-06-19 13:36:47
阅读次数:
47
这种问题就总是很恶心,非技术性的小问题,解决起来总是很花时间。今天在此记录一下我的解决方法: 参考1:https://github.com/prettier/prettier-vscode/issues/1299 参考2:https://prettier.io/docs/en/configurati ...
分类:
其他好文 时间:
2020-06-18 19:48:56
阅读次数:
156
const express=require(`express`)const morgan=require(`morgan`)const serveFavicon=require(`serve-favicon`)const bodyParser=require(`body-parser`)const ...
分类:
其他好文 时间:
2020-06-16 23:12:23
阅读次数:
58
出现 参数是 undefined or null 一、检查是否安装 body-parser server.js中是否引入 app.use(bodyParser.urlencoded({ extended: false })); app.use(bodyParser.json()); 二、如果上面没有 ...
分类:
其他好文 时间:
2020-06-16 15:40:38
阅读次数:
197
我当年入门编译原理的时候,是看了一本《游戏脚本高级编程》的书。这本书虽然写得拖泥带水,内容也特别浅,但正是这本书让我知道了如何从头到尾实际地写一个parser + 虚拟机,让我入了门。后来我在 @vczh 的指点下看了Parsing Techniques,自己写了一个正则表达式匹配和LR(K) Pa ...
分类:
其他好文 时间:
2020-06-14 12:33:32
阅读次数:
116
纸上得来终觉浅,绝知此事要躬行。 MySQL体系结构 Connection Pool:连接池组件 Management Services & Utilities:管理服务和工具组件 SQL Interface:SQL接口组件 Parser:查询分析器组件 Optimizer:优化器组件 Caches ...
分类:
数据库 时间:
2020-06-10 22:40:40
阅读次数:
79