Python
霜桥月馆
k
展开
-
pytorch0.4.0+CUDA8.0+win10+Anaconda安装
任何问题和错误请留言,会及时回复我装的是win10 + py3.6 + conda + cuda8.0 + pytorch0.4.0 看了一些网上的教程(点击参考),有一些问题我这里实际上基本是自己解决的一些问题目录目录安装教程速览安装详细教程(图文)测试CUDA是否安装好参考安装教程速览conda install pytorch -c py...原创 2018-05-20 22:05:19 · 13692 阅读 · 7 评论 -
Python20行实现马尔科夫链的鸡汤生成器
原文地址: https://codeburst.io/how-i-generated-inspirational-quotes-with-less-than-20-lines-of-code-38273623c905 作者:Ramtin Alami马尔科夫链本文是我的一些简单翻译和理解(删了很多趣味性的话,为了少打字。。。。),如果翻译引起的对于作者猫的不尊重请与我联系。 非常推荐...翻译 2018-08-29 20:04:09 · 4667 阅读 · 0 评论 -
python: Failed building wheel for*****
主要是因为官方源没有对因的.whl文件解决方法anaconda searct -t conda **非官方下载whl, pip install ****.whl原创 2018-08-26 19:20:15 · 2245 阅读 · 0 评论 -
Ubuntu:Failed building wheel for python-igraph
参考:https://stackoverflow.com/questions/34962410/igraph-failed-to-install-through-pipsudo add-apt-repository ppa:igraph/ppasudo apt-get updatesudo apt-get install python-igraph原创 2018-08-26 14:40:43 · 2272 阅读 · 0 评论 -
torchnet安装
pip install git+https://github.com/pytorch/tnt.git@master原创 2018-08-18 16:00:03 · 1652 阅读 · 0 评论 -
matplotlib (四: 动画)
主要参考了莫凡 的教程 请在console或者IDE中运行,jupyter notebook 无法显示动图 内容包括: 点击这里查看代码原创 2018-08-07 14:55:05 · 227 阅读 · 0 评论 -
matplotlib (三: 多图合并显示)
主要参考了莫凡 的教程 内容包括: + Basic usage - Figure - Axis setting1 - Axis setting2 - Legend - Annotation - Deal with Tick 点击这里查看代码 ...原创 2018-08-07 14:30:12 · 2973 阅读 · 0 评论 -
matplotlib (二: 画图种类)
主要参考了莫凡 的教程内容包括: * drawing - Scatter - Bar - Contours - Image - 3D plot 点击这里查看代码原创 2018-08-07 12:32:17 · 480 阅读 · 0 评论 -
matplotlib (一: 基本操作)
主要参考了莫凡 的教程Basic usage FigureAxis setting1Axis setting2LegendAnnotationDeal with Tick点击这里查看代码原创 2018-08-07 12:24:42 · 194 阅读 · 0 评论 -
python:map 方法
能够把一个tuple转换成list# python2:def f(x): return x**2list1 = [1,2,3,4,5]map(f, list1)>>> [1,4,9,16,25]# python3def f(x): return x**2list1 = [1,2,3,4,5]list2 = list(map(f, li...原创 2018-08-11 14:43:07 · 420 阅读 · 0 评论 -
python练习小项目
转载于:https://www.cnblogs.com/shiyanlou/p/7238503.html1、【Python 图片转字符画】2、【200行Python代码实现2048】3、【Python3 实现火车票查询工具】4、【高德API+Python解决租房问题 】5、【Python3 色情图片识别】6、【Python 破解验证码】7、【Python实现简单的Web服务器】8...转载 2018-08-10 20:53:15 · 2493 阅读 · 0 评论 -
RuntimeError('Invalid DISPLAY variable')
在服务器上跑的时候遇到了这个问题,原因在于sever不能显示,必须要保存下来,但是如果为了,程序能够跑起来,可以添加以下代码:plt.switch_backend('agg') after import matplotlib.pyplot as plt参考: https://github.com/matplotlib/matplotlib/issues/3466/...原创 2018-06-01 18:37:05 · 3379 阅读 · 0 评论 -
python argparse用法
主要参考了https://www.cnblogs.com/yymn/p/8056487.html by 菜鸡一枚demo1import argparseparser = argparse.ArgumentParser()parser.add_argument('echo')args = parser.parse_args()print(args.echo)python a.py ...原创 2018-09-29 20:07:45 · 187 阅读 · 0 评论