Python
文章平均质量分 50
Yew1168
这个作者很懒,什么都没留下…
展开
-
Pytorch及Onnx简单使用
1. samples:Learn the Basics — PyTorch Tutorials 1.10.1+cu102 documentation DCGAN Tutorial — PyTorch Tutorials 1.10.1+cu102 documentation EXPORTING A MODEL FROM PYTORCH TO ONNX examples/super_resolution at master · pytorch/examples (github.com)..原创 2022-01-12 21:17:38 · 1192 阅读 · 1 评论 -
PyTorch出现:RuntimeError: An attempt has been made to start a new process...报错解决
问题:RuntimeError: An attempt has been made to start a new process before the current process has finished its bootstrapping phase. This probably means that you are not using fork to start your child processes and you ha原创 2022-01-12 20:51:58 · 2624 阅读 · 0 评论 -
Python中的*args和**kwargs
Python中的*args和**kwargs - 知乎 (zhihu.com)*args就是就是传递一个可变参数列表给函数实参,这个参数列表的数目未知,甚至长度可以为0;**kwargs则是将一个可变的关键字参数的字典传给函数实参,同样参数列表长度可以为0或为其他值。...转载 2021-09-28 19:55:40 · 102 阅读 · 0 评论 -
UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0x80 in position 2339: illegal multibyte sequence
使用tf_upgrade_v2 升级tensorflow1.x的代码,报错,修改tensorflow源文件python | 读文件编码问题 | UnicodeDecodeError: 'gbk' codec can't decode byte 0x80 in position 34: illegal mu - 云+社区 - 腾讯云 (tencent.com)原创 2021-09-27 16:25:10 · 479 阅读 · 0 评论 -
Python Scrapy 安装
安装scrapy需要安装twisted,pip在线安装需要vc编译,python3需要vs2015-Microsoft Visual C++ 14.0;但我电脑装了17763,设置了vs2015vc路径,链接参数始终是指向17763的include文件夹,估计要卸载安装10586或14393,麻烦!直接安装whl文件,下载https://www.lfd.uci.edu/~gohlke/pytho...原创 2019-01-15 00:14:11 · 123 阅读 · 0 评论 -
Python爬虫实例(四)网站模拟登陆
https://www.cnblogs.com/xinyangsdut/p/7627047.html一、获取一个有登录信息的Cookie模拟登陆下面以人人网为例,首先使用自己的账号和密码在浏览器登录,然后通过抓包拿到cookie,再将cookie放到请求之中发送请求即可,具体代码如下:# -*- coding: utf-8 -*-import urllib2# 构建一个已...转载 2019-01-09 19:21:58 · 324 阅读 · 0 评论 -
python3中bytes和string之间的互相转换
https://www.jb51.net/article/105064.htm前言Python 3最重要的新特性大概要算是对文本和二进制数据作了更为清晰的区分。文本总是Unicode,由str类型表示,二进制数据则由bytes类型表示。Python 3不会以任意隐式的方式混用str和bytes,正是这使得两者的区分特别清晰。你不能拼接字符串和字节包,也无法在字节包里搜索字符串(反之亦然),...转载 2019-03-17 21:10:52 · 2209 阅读 · 0 评论 -
Python读取文件UnicodeDecodeError: 'utf-8' codec can't decode byte 0xbc in position 2: invalid start byte
https://blog.csdn.net/stone9159/article/details/79071316中文字符的Unicode编码0x0800-0xFFFF之间,(utf-8包含了部分汉字)当你试图将该“中文字符”转成U码的utf-8时超出了其范筹而GBK 规范收录了 ISO 10646.1 中的全部 CJK 汉字和符号,并有所补充,日文韩文所以解决方法是将.decode('u...转载 2019-03-17 21:11:51 · 3944 阅读 · 0 评论 -
关于scrapy继承FilePipeline自建pipeline,下载文件重命名的办法以及对应url没有文件后缀的办法
https://www.cnblogs.com/pythonClub/p/9858830.html由于网页一般会将想要请求的文件类型放在response的头部信息 content-type里,我们可以通过获取content-type信息,在进行相应的操作。这样我们就需要找到调用file_path的函数 1 2 3 4 5 6 7 ...转载 2019-03-17 21:14:49 · 1983 阅读 · 0 评论 -
VS Code +Python
1. VScode 写 Python 无法使用 autocomplete/intellisence删除当前工作文件夹里的.vscode文件夹https://www.v2ex.com/t/4385662.无语法高亮切换至默认dark主题,检查magicpython插件是否安装https://blog.csdn.net/zhouzixin053/article/details/51...转载 2018-12-25 19:03:19 · 326 阅读 · 0 评论 -
使用vscode开发Python程序:代码静态检查工具pylint及代码格式化工具yapf的配置使用
Pylint由于 Python 插件在 2018.1.0 (Jan. 2018) 版本更新中引入了一项默认设置: // 静态检查时是否使用pylint的最小规则集(minimal set of rules) "python.linting.pylintUseMinimalCheckers": true这一默认设置等价于以下pylint选项:--disable=all --en...转载 2018-12-25 16:12:05 · 4098 阅读 · 0 评论 -
RuntimeError: An attempt has been made to start a new process before the current process...
https://pytorch.org/tutorials/beginner/blitz/cifar10_tutorial.html#sphx-glr-beginner-blitz-cifar10-tutorial-pyimport torchimport torchvisionimport torchvision.transforms as transformsimport matp...原创 2018-12-19 01:21:19 · 20388 阅读 · 9 评论 -
完美解决Window下Python多版本共存/切换
Win10 修改环境变量,不用重启或注销账号;只需每次运行Python前管理员权限运行bat,修改环境变量,重新打开cmd即可立即切换python。方法:1. Python多版本安装目录尽量在一起,比如:1. 系统变量PATH里添加python路径"%WhichPython%"和"%WhichPython%\Scripts\";另外添加WhichPython变量,值设为某个pytho...原创 2018-11-02 01:30:42 · 4163 阅读 · 1 评论 -
Python Windows基础
https://docs.python.org/3/faq/windows.html#how-do-i-run-a-python-program-under-windows1.cmd模式下Ctrl-Z退出Python;或者exit();2. 默认关联py文件,双击自动运行On Windows, the standard Python installer already associates...转载 2018-11-10 00:06:50 · 124 阅读 · 0 评论 -
Numpy/Scipy with Intel® MKL and Intel® Compilers
python 提升 "NUMPY_MKL"找不到,uninstall unmpy,离线下载安装numpy-mkl(https://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy)关于NUMPY_MKL:https://software.intel.com/en-us/articles/numpyscipy-with-intel-mkl...原创 2018-11-08 01:31:34 · 231 阅读 · 0 评论 -
Python Re Group()
import reline='Cats are smarter then dogs'searchObj=re.search(r'(.*) are (.*?) .*',line,re.M|re.I)#searchObj=re.match('w','WWW.baidu.com',flags=re.I)if searchObj: print(searchObj) print(...原创 2018-11-14 13:31:42 · 1542 阅读 · 0 评论 -
Numpy nan
Cause:https://docs.scipy.org/doc/numpy/user/quickstart.html#indexing-slicing-and-iterating>>> a = np.arange(10)**3>>> aarray([ 0, 1, 8, 27, 64, 125, 216, 343, 512, 729]...原创 2018-12-05 19:00:13 · 836 阅读 · 0 评论 -
Mac Python pip 安装
https://pip.pypa.io/en/stable/installing/curl https://bootstrap.pypa.io/get-pip.py -o get-pip.pypython get-pip.pyMAC OSX 正確地同時安裝 PYTHON 2.7 和 PYTHON3https://stringpiggy.hpd.io/mac-osx-python3-...转载 2018-12-04 00:59:51 · 249 阅读 · 0 评论 -
Numpy axis /Numpy.ufunc.identity
轴用来为超过一维的数组定义的属性,二维数据拥有两个轴:第0轴沿着行的垂直往下,第1轴沿着列的方向水平延伸https://www.cnblogs.com/rrttp/p/8028421.html2.for the ufunc np.add, ufct.identity is 0. But for another function it may be something else. F...转载 2018-12-06 18:24:54 · 296 阅读 · 0 评论 -
Anaconda学习使用
https://conda.io/docs/user-guide/getting-started.htmlhttps://docs.anaconda.com/anaconda/install/windows/install windows (不添加环境变量,使用anaconda开始菜单中的命令行)Choose whether to add Anaconda to your PATH e...转载 2018-12-06 23:52:28 · 1097 阅读 · 0 评论 -
pytorch源码:C拓展
Python C拓展和普通的CPython方式拓展类似,下面主要看pytorch中的拓展模块“_C"的定义和相应其他模块的添加方式。pytorch中的拓展模块定义代码主要在torch/csrc/Module.cpp中,在预备知识中熟悉Python如何拓展C后,直接在Module.cpp找到感兴趣的初始化部分:#if PY_MAJOR_VERSION == 2PyMODINIT_FUNC...转载 2018-12-19 00:30:57 · 484 阅读 · 0 评论 -
python无法卸载或安装
there is a problem with this windows installer package.................使用微软提供的工具运行监测,删除之前有问题的版本;然后重新安装https://support.microsoft.com/en-us/help/17588/fix-problems-that-block-programs-from-being-ins...原创 2018-11-02 00:12:51 · 1733 阅读 · 1 评论