摘要: matplotlib.pyplot.text(x, y, s, fontdict=None, withdash=<deprecated parameter>, **kwargs)[source] 向坐标轴添加内容,x,y代表添加文字的位置的坐标。 Add text to the axes. Add 阅读全文
posted @ 2020-02-29 19:54 月夜_1 阅读(844) 评论(0) 推荐(0) 编辑
摘要: 转自 https://my.oschina.net/swuly302/blog/94805 自定义matplotlib Created Saturday 08 December 2012 5.1 matplotlibrc文件 matplotlib使用matplotlibrc [matplotlib 阅读全文
posted @ 2020-02-29 17:44 月夜_1 阅读(583) 评论(0) 推荐(0) 编辑
摘要: 不同label样本画图——颜色分配plt.cm.Spectralhttps://blog.csdn.net/wang_zuel/article/details/102940092 关于plt.cm.Spectral https://blog.csdn.net/robin_Xu_shuai/artic 阅读全文
posted @ 2020-02-29 12:00 月夜_1 阅读(2133) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/wangyang20170901/article/details/78745587 MATLAB中mean的用法 转载仙女阳 最后发布于2017-12-07 20:39:27 阅读数 23473 收藏 展开 1、函数功能 求数组的平均数或者均值2、使用方法 阅读全文
posted @ 2020-02-29 11:26 月夜_1 阅读(1104) 评论(0) 推荐(0) 编辑
摘要: module ‘tensorflow’ has no attribute ‘get_default_graph’当我使用keras和tensorflow做深度学习的时候,python3.7报了这个错误,这个问题源自于keras和TensorFlow的版本过高导致模块不存在或者已经更改不再兼容 解决办 阅读全文
posted @ 2020-02-24 20:22 月夜_1 阅读(8249) 评论(0) 推荐(0) 编辑
摘要: 【转自】卷积神经网络CNN完全指南终极版(一) - 沉迷学习的糕糕的文章 - 知乎 https://zhuanlan.zhihu.com/p/27908027 【一】导论 卷积神经网络,也就是convolutional neural networks (简称CNN)。feature在CNN中也被成为 阅读全文
posted @ 2020-02-11 12:18 月夜_1 阅读(210) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_35290785/article/details/94780620 .strip().split('t')line =' nihao, zhenhao,dajiahao 'print(line).strip().split('t') .strip() 阅读全文
posted @ 2020-02-07 14:44 月夜_1 阅读(1088) 评论(0) 推荐(0) 编辑
摘要: Standardization(标准化)和Normalization(归一化)的区别 https://blog.csdn.net/Dhuang159/article/details/83627146 阅读全文
posted @ 2020-02-07 14:32 月夜_1 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 在python中: open('file.txt', 'w').close() 或者,如果你已经打开了一个文件: f = open('file.txt', 'r+') f.truncate(0) # need '0' when using r+ 阅读全文
posted @ 2020-02-07 13:46 月夜_1 阅读(12470) 评论(0) 推荐(0) 编辑
摘要: 1.变量赋值与语句 #python 不需要手动指定变量类型。不需要分号 #To assign the value 365 to the variable days,we enter the variable name, add an equals sign(=) days=365 2.输出 prin 阅读全文
posted @ 2020-02-07 11:24 月夜_1 阅读(379) 评论(0) 推荐(0) 编辑