代码原地址: https://www.mindspore.cn/tutorial/training/zh-CN/r1.2/use/load_dataset_text.html ...
分类:
其他好文 时间:
2021-07-12 17:59:11
阅读次数:
0
from transformers import BertModel, BertTokenizer, BertConfig import torch enc = BertTokenizer.from_pretrained("bert-base-uncased") # 输入文本tokenize tex ...
分类:
其他好文 时间:
2021-04-08 13:24:15
阅读次数:
0
alsa-util.calsa-util.hauthkey.cauthkey.hcli-command.ccli-command.hcli.ccli.hclient.cclient.hclitext.cclitext.hcmdline.ccmdline.hcore.ccore.hdepmod.pyd ...
分类:
其他好文 时间:
2020-05-31 11:23:08
阅读次数:
65
1.读取 2.数据预处理 3.数据划分—训练集和测试集数据划分 from sklearn.model_selection import train_test_split x_train,x_test, y_train, y_test = train_test_split(data, target, ...
分类:
其他好文 时间:
2020-05-24 19:24:31
阅读次数:
56
朴素贝叶斯垃圾邮件分类 读邮件数据集文件,提取邮件本身与标签。 2.邮件预处理 2.1传统方法 2.1 nltk库 分词nltk.sent_tokenize(text) #对文本按照句子进行分割 nltk.word_tokenize(sent) #对句子进行分词 2.2 punkt 停用词from ...
分类:
其他好文 时间:
2020-05-17 22:04:44
阅读次数:
104
项目在此基础上:solr7.2.1+tomcat8.5.37+jdk8安装配置 github:https://github.com/magese/ik-analyzer-solr 历史版本下载地址:https://search.maven.org/search?q=g:com.github.mage ...
分类:
其他好文 时间:
2020-04-20 13:56:57
阅读次数:
83
前景,pymysql,pysftp这类库已经pip install 但运行脚本时还是提示没有模块 于是 升级了一下 然后再次pip时就出现了一堆报错 处理办法: 升级库 ...
分类:
其他好文 时间:
2020-04-05 11:40:16
阅读次数:
113
1.pip离线包缺失 Command "/data/bkce/.envs/bkdata-dataapi/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-p2tIJ_/MySQL-python/setup.p ...
分类:
其他好文 时间:
2020-03-10 20:14:46
阅读次数:
612
java相关: 静态变量的有效范围可以跨类 eg: static int i = 5; 使用break只能退出当前循环; Continue用在循环语句中,用于让程序直接跳过其后面的语句,进行下一次循环; 全局变量会自动设置默认值,成员变量不会自动设置默认值; ++++++++++++++++++++ ...
分类:
编程语言 时间:
2020-01-20 13:03:57
阅读次数:
67
前21题请看之前的随笔 22、面向对象的特征有哪些方面 计算机软件系统是现实生活中的业务在计算机中的映射,而现实生活中的业务其实就是一个个对象协作的过程。面向对象编程就是按现实业务一样的方式将程序代码按一个个对象进行组织和编写,让计算机系统能够识别和理解用对象方式组织和编写的程序代码,这样就可以把现 ...
分类:
编程语言 时间:
2019-12-14 17:19:58
阅读次数:
79