上一页 1 2 3 4 5 6 7 ··· 22 下一页
摘要: def findDiff(d1, d2, path=""): for k in d1: if (k not in d2): print (path, ":") print (k + " as key not in d2", "\n") else: if type(d1[k]) is dict: if 阅读全文
posted @ 2023-04-27 09:03 cup_leo 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 输出svg时中文显示正常!!! from six import StringIO #可视化 dot_data = StringIO() tree.export_graphviz(clf,out_file = dot_data,feature_names=feature_name, class_nam 阅读全文
posted @ 2023-04-12 14:50 cup_leo 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 参考 :(63条消息) Jupyter Notebook设置黑色背景主题,字体大小,代码自动补全_jupyter黑色背景_极客阿宝的博客-CSDN博客 pip install jupyterthemes -i https://mirrors.aliyun.com/pypi/simple jt -t 阅读全文
posted @ 2023-04-03 14:36 cup_leo 阅读(80) 评论(0) 推荐(0) 编辑
摘要: def frequent_words(tdf,k): words = ' '.join(tdf['OriginalTweet'].apply(lambda x:' '.join(x)).values.flatten()).split(' ') freq = nltk.FreqDist(words) 阅读全文
posted @ 2023-03-04 09:24 cup_leo 阅读(12) 评论(0) 推荐(0) 编辑
摘要: raw = [52.34, 52.85, 52.61, 52.77, 52.27, 53.13, 53.24, 52.98, 52.36, 53.57, 52.91, 53.21, 52.25, 52.24, 50.83, 50.63, 49.93, 47.62, 48.52, 48.4, 48.0 阅读全文
posted @ 2022-11-14 14:38 cup_leo 阅读(585) 评论(0) 推荐(0) 编辑
摘要: 参考文章: 使用微信扫一扫二维码接口解密QRcode - 知乎 (zhihu.com) import cv2 import numpy as np import os def open_img(img_dir): img_list = [] for _,_,file_list in os.walk( 阅读全文
posted @ 2022-11-01 16:22 cup_leo 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 基于Python的19种假设检验实现 - 知乎 (zhihu.com) 阅读全文
posted @ 2022-10-16 11:05 cup_leo 阅读(23) 评论(0) 推荐(0) 编辑
摘要: zhaogaofeng611/TextMatch: 基于Pytorch的,中文语义相似度匹配模型(ABCNN、Albert、Bert、BIMPM、DecomposableAttention、DistilBert、ESIM、RE2、Roberta、SiaGRU、XlNet) (github.com) 阅读全文
posted @ 2022-10-09 13:31 cup_leo 阅读(98) 评论(0) 推荐(0) 编辑
摘要: import xlrd import numpy as np from sklearn.model_selection import train_test_split #划分测试集和训练集 import matplotlib.pyplot as plt from sklearn.model_sele 阅读全文
posted @ 2022-10-05 16:05 cup_leo 阅读(445) 评论(0) 推荐(0) 编辑
摘要: Releases · PurlingNayuki/lingoes-extractor (github.com) 阅读全文
posted @ 2022-10-05 10:21 cup_leo 阅读(185) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 22 下一页