python
I am leeb
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
IDLE 如何实现清屏
下载ClearWindow.py,复制ClearWindow.py文件,并放在Python安装目录PythonX\Lib\idlelib下面((文件原作者:Roger D. Serwy)"""Clear Window ExtensionVersion: 0.2Author: Roger D. Serwy roger.serwy@gmail.comDate: 2009-06-14It provides "Clear Shell Window" under "Options转载 2020-11-24 15:10:32 · 376 阅读 · 0 评论 -
解决 ERROR: jsonschema 3.0.2 has requirement six>=1.11.0, but you'll have six 1.10.0 which is incompat
解决 ERROR: jsonschema 3.0.2 has requirement six>=1.11.0, but you’ll have six 1.10.0 which is incompatible安装jupyter时出现:直接给出解决方法:pip install six --user -U原创 2019-09-09 21:07:56 · 7083 阅读 · 0 评论 -
Jupyter Notebook 自动补全代码 和 主题
1.安装 jupyter 插件Nbextensionspip install jupyter_contrib_nbextensionsjupyter contrib nbextension install --user2.勾选 “Table of Contents” 以及 “Hinterland”原创 2019-09-09 21:23:08 · 196 阅读 · 0 评论 -
anaconda conda 换源
版权声明:本文为优快云博主「strange_jiong」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。原文链接:https://blog.youkuaiyun.com/dream_allday/article/details/803445111 添加清华源命令行中直接使用以下命令conda config --add channels https://mirro...转载 2019-09-10 10:35:19 · 269 阅读 · 0 评论 -
numpy 中 axis 轴的理解
**np.argmax() **numpy中np.argmax() 能计算出ndarray对象在某一个维度上的其元素最大值所在的索引值,(tensorflow中tf.argmax类似)tf.argmax()函数中有个axis参数(轴),该参数能指定按照哪个维度计算。如,在矩阵的结构中,axis可被设置为0或1,分别表示:axis=0:按列计算(以列为单位)axis=1:按行计算(以行为...原创 2019-09-14 12:34:13 · 205 阅读 · 0 评论
分享