自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 收藏
  • 关注

原创 'module' object is not callable

q = queue()TypeError: ‘module’ object is not callable解决:queue引用错误把import queue变成from queue import Queue即可

2019-07-30 20:43:25 1170

转载 AttributeError: 'dict' object has no attribute 'iteritems'

网址:https://blog.csdn.net/qq_30638831/article/details/79928463

2019-07-30 20:19:13 288

转载 TypeError: 'dict_keys' object is not subscriptable

网址:https://blog.csdn.net/mlp750303040/article/details/79287177/

2019-07-30 20:18:03 427

转载 终端怎么退出python命令行

使用 quit(), exit(), 或者Command+d,或者Command+z退出命令行。

2019-07-30 15:28:23 9221 2

转载 zip object has no attribute 'sort'

网址:https://stackoverflow.com/questions/43698531/sorting-a-zipped-object-in-python-3?r=SearchResults

2019-07-30 14:48:04 2250

转载 语义搜索

https://blog.csdn.net/mydear_11000/article/details/52785005

2019-07-23 23:13:36 433

转载 BiLSTM-CRF模型做基于字的中文命名实体识别

https://www.cnblogs.com/Determined22/p/7238342.html

2019-07-23 15:05:55 342

转载 基于注意力机制的BiGRU

http://www.c-s-a.org.cn/html/2019/3/6816.html

2019-07-23 12:02:13 4353

转载 pairwise,set.difference,map

网址:https://blog.csdn.net/winone361/article/details/82956930

2019-07-18 15:48:31 136

转载 词袋模型(bag of words,BOW)

词袋模型(bag of words,BOW):https://blog.csdn.net/weixin_43112462/article/details/88669902

2019-07-16 15:33:24 590

原创 pycharm运行程序

pycharm运行程序:CRTL+SHIFT+F10

2019-07-16 11:25:20 175

原创 python中矩阵.A

将矩阵转化为数组,直接在矩阵名后加 .A 即可。from numpy import *matTest = mat([1, 2])print(matTest, type(matTest)) matTestToArr = matTest.Aprint(matTestToArr, type(matTestToArr)) 结果:[[1 2]] <class ‘numpy.matrix...

2019-07-14 10:56:01 187

转载 机器学习之K-means、Canopy聚类

机器学习之K-means、Canopy聚类:https://blog.csdn.net/liuy9803/article/details/80779692

2019-07-12 14:24:29 196

转载 实体融合

实体融合归一:https://blog.csdn.net/baidu_33718858/article/details/81227827

2019-07-11 17:11:00 1127

原创 neo4j基本操作

参考1:https://blog.csdn.net/qq_33232071/article/details/50987318参考2:https://blog.csdn.net/tanglizoe/article/details/89103022删除节点MATCH(n:City) DETACHDELETE n删除关系match (n)-[r:created]-()detach dele...

2019-07-09 17:08:29 144

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除