Python
文章平均质量分 55
白王_
半路出家
展开
-
Ubuntu18.04(WSL)安装Jupyter notebook,并在win10浏览器中打开jupyter
前提:已安装python3和pip3满足以上条件即可开始安装~安装jupyter【临时使用pip的清华镜像源,加快下载速度】$ pip3 install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple自动生成jupyter配置文件$ jupyter notebook --generate-config --allow-rootWriting default config to: /home/wang/.jupyter/jupy原创 2020-11-25 17:28:26 · 1779 阅读 · 7 评论 -
Ubuntu18.04运行mnist_cnn.py记录
# -*- coding: utf-8 -*- '''Trains a simple deep NN on the MNIST dataset.Gets to 98.40% test accuracy after 20 epochs(there is *a lot* of margin for parameter tuning).2 seconds per epoch on a K520 GPU.''' from __future__ import print_function imp.原创 2020-11-25 00:30:42 · 354 阅读 · 0 评论 -
【寻找第n个默尼森数】利用python找出第n个默尼森数
经典程序设计问题:找第n个默尼森数。P是素数且M也是素数,并且满足等式M=2**P-1,则称M为默尼森数。例如,P=5,M=2**P-1=31,5和31都是素数,因此31是默尼森数。(31是第3个默尼森数)代码格式如下:def prime(num): ...def monisen(no): … … return xxx# -*- coding:utf-8 -*-""...原创 2018-05-27 18:57:54 · 1989 阅读 · 0 评论 -
【关于《Python从入门到实践》书中第16章的作图问题】python使用matplotlib作图:如何合理设置x轴日期格式
本人是Python语言初学者。因在阅读《Python从入门到实践》一书的第十六章的实践过程中,发现按书中示例代码所做的图形与书中所示图形不符:X轴的日期显示不符(fig.autofmt_xdate()无法实现合理设置X轴日期格式)。 故有此文。书中代码所得的图形。 百度找到一种方法,通过fig.add_subplot(1,1,1)在图形原位置重...原创 2018-05-24 18:19:35 · 3781 阅读 · 2 评论