上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页
摘要: python使用sklearn.datasets.make_gaussian生成数据,代码传送门:import matplotlib.pyplot as plt from sklearn.datasets im... 阅读全文
posted @ 2020-03-04 10:49 HelenLee01 阅读(248) 评论(0) 推荐(0) 编辑
摘要: python使用sklearn.datasets.make_blobs来生成数据,代码传送门:from sklearn.datasets import make_blobsfrom matplotlib impo... 阅读全文
posted @ 2020-03-04 10:44 HelenLee01 阅读(447) 评论(0) 推荐(0) 编辑
摘要: python使用sklearn手写数据集,代码传送门:import matplotlib.pyplot as pltfrom sklearn.datasets import load_digits digits ... 阅读全文
posted @ 2020-03-03 14:33 HelenLee01 阅读(277) 评论(0) 推荐(0) 编辑
摘要: sklearn之生成三类数据用于聚类,并设置不同方差,代码传送门:import matplotlib.pylab as pltfrom sklearn.datasets import make_blobs # 每... 阅读全文
posted @ 2020-03-03 14:25 HelenLee01 阅读(258) 评论(0) 推荐(0) 编辑
摘要: python使用sklearn生成环形和半环型数据,代码传送门:from sklearn.datasets import make_circlesfrom sklearn.datasets import make... 阅读全文
posted @ 2020-03-03 14:08 HelenLee01 阅读(330) 评论(0) 推荐(0) 编辑
摘要: python使用sklearn机器学习之创建数据集:from sklearn.datasets.samples_generator import make_classificationX, y = make_cl... 阅读全文
posted @ 2020-03-03 14:03 HelenLee01 阅读(569) 评论(0) 推荐(0) 编辑
摘要: 使用plotly画三维立体高逼格图,代码传送门:import plotly.graph_objects as goimport numpy as npnp.random.seed(1)N = 70fig = go... 阅读全文
posted @ 2020-03-03 11:47 HelenLee01 阅读(1112) 评论(0) 推荐(0) 编辑
摘要: 使用jieba中的textrank提取文本关键词:姐妹篇:https://blog.csdn.net/weixin_43289135/article/details/104628816import jieba.a... 阅读全文
posted @ 2020-03-03 11:39 HelenLee01 阅读(1100) 评论(0) 推荐(0) 编辑
摘要: 使用jieba提取关键词:姐妹篇:https://blog.csdn.net/weixin_43289135/article/details/104628913import jieba.analysetext =... 阅读全文
posted @ 2020-03-03 11:35 HelenLee01 阅读(699) 评论(0) 推荐(0) 编辑
摘要: Gensim的Word2Vec模型中参数的详细解释:model=gensim.models.Word2Vec(sentences,sg=1,size=100,window=5,min_count=2,negat... 阅读全文
posted @ 2020-03-03 11:31 HelenLee01 阅读(1417) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页