库和函数学习
文章平均质量分 52
林几瑕
这个作者很懒,什么都没留下…
展开
-
Python sklearn.neural_network.MLPClassifier
原文:http://www.manongjc.com/detail/31-qzowvnwgqvryshl.html多层感知器分类器。该模型使用 LBFGS 或随机梯度下降优化 log-loss 函数。参数hidden_layer_sizes:元组,长度= n_layers - 2,默认=(100,)activation:{‘identity’, ‘logistic’, ‘tanh’, ‘relu’},默认=‘relu’solver:{‘lbfgs’, ‘sgd’, ‘adam’},默认=‘adam’转载 2022-12-04 16:19:54 · 2067 阅读 · 0 评论 -
Could not find a version that satisfies the requirement pandas (from versions: ) No matching di
报错如图:一堆黄字:要么开了代理,要么镜像源不对。关掉代理。再次输入命令,安装成功。PS:感谢zwf学长的热心帮助,太雪中送炭了,我哭。原创 2022-02-23 00:05:14 · 2971 阅读 · 0 评论 -
Labelme的安装和打开并使用
参考博客:https://blog.csdn.net/zong596568821xp/article/details/83375227该博客截图:参考文档(应该是官方文档):https://codechina.csdn.net/mirrors/wkentaro/labelme?utm_source=csdn_github_accelerator文档截图:总结:打开anaconda prompt,依次输入如下命令。(我的base环境是python3.6.5)conda create -原创 2020-12-26 15:52:33 · 19843 阅读 · 2 评论 -
TensorFlow与Keras与Python的对应关系
链接:https://docs.floydhub.com/guides/environments/原创 2020-12-23 10:41:25 · 833 阅读 · 0 评论 -
__init__() got an unexpected keyword argument ‘axis‘
错误代码:正确导入了Imputer函数之后仍然存在问题。函数的导入:https://blog.csdn.net/weixin_43582443/article/details/111143061修改代码imr = Imputer(missing_values='NaN', strategy='mean', axis=0)为:imr = Imputer(missing_values=np.nan, strategy='mean')运行成功。Imputer函数和新的SimpleImputer函原创 2020-12-13 20:57:39 · 7955 阅读 · 0 评论 -
Pandas中describe()函数
先附上官方文档:https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.describe.htmldescribe()有三个参数:DataFrame.describe(percentiles=None, include=None, exclude=None)# return:Series or DataFrame. Summary statistics of the Series or Datafra原创 2020-12-13 17:07:21 · 19653 阅读 · 0 评论