PYTHON
文章平均质量分 54
zbzckaiA
这个作者很懒,什么都没留下…
展开
-
OMP: Error #15: Initializing libiomp5md.dll, but found libiomp5md.dll already initialized
python dll原创 2022-09-15 16:38:06 · 337 阅读 · 0 评论 -
pyinstaller -F
pyinstaller-F--hidden-importfake_useragentpc.py--i1.ico#ioc图标数据。解决方法2将代码里的from..import..改成import..解决方法3打包时,使用--hidden-import选项,隐式导入缺少的包。解决方法1更新pyinstaller包。原创 2022-07-19 13:51:55 · 1857 阅读 · 0 评论 -
Python ftp
工作需要,需要对FTP协议下的各种文件进行上传下载操作,所以了解下Python中的ftplib模块。Python中默认安装的ftplib模块定义了FTP类,可用来实现简单的ftp客户端,用于上传或下载文件,有需要的可以看过来了。先打个底:以理解为主,不够全面,如果看完还是不会,那一定是我写的不够好。1.ftp登陆连接先设置FTP连接的参数# 文件服务器参数ftp_param = { 'host': '10.12.8.22', 'port': 2121, 'u.原创 2022-01-20 15:25:06 · 419 阅读 · 0 评论 -
torch 中BN参数介绍
BN层的输出Y与输入X之间的关系是:Y = (X - running_mean) / sqrt(running_var + eps) * gamma + beta,此不赘言。其中gamma、beta为可学习参数(在pytorch中分别改叫weight和bias),训练时通过反向传播更新;而running_mean、running_var则是在前向时先由X计算出mean和var,再由mean和var以动量momentum来更新running_mean和running_var。所以在训练阶段,runn...原创 2021-12-15 17:28:53 · 4899 阅读 · 0 评论 -
服务器多卡训练说明
服务器在使用多卡进行训练输入的batch需要满足 :batch_size = gpu_num * 偶数 * 8.如果是不是这个尺寸会导致原创 2021-12-07 16:37:43 · 382 阅读 · 0 评论 -
torch网络展示
1、打印网络信息import timmimport torchfrom torchsummary import summarymodel = timm.create_model('regnetx_002', pretrained=False,num_classes=100)##regnety_032summary(model, ( 3, 1280,960))timm.list_models('regnet*')print(model)#打印的是网络每层的信息print(summar.原创 2021-09-25 10:09:27 · 772 阅读 · 0 评论 -
python读取kml为geojson
python读取kml为geojson试过用ogr读取kml,地理数据读取没问题,但是kml里面的属性数据读取我还没找到方法,后来在github上找到了一个叫做fastkml的类库:https://github.com/LawAlias/fastkml在这里还要借助shapely用于将读取出的kml数据进行geojson的结构化一、类库引用from fastkml import kmlfrom fastkml import geometryfrom shapely.geometr原创 2021-08-03 09:17:44 · 1386 阅读 · 0 评论 -
ValueError: Cannot use the given session to evaluate tensor: the tensor‘s graph is different from th
ValueError: Cannot use the given session to evaluate tensor: the tensor's graph is different from the session's graph在一段代码中运行多个模型到时graph中的tensor混乱,需在模型定义及模型predict 过程开始指定graph 与 sessionwith self.session.as_default(): with self.graph.as_default():原创 2021-04-16 14:28:54 · 1310 阅读 · 0 评论 -
yolov5 ModuleNotFoundError: No module named ‘models‘
ModuleNotFoundError: No module named 'models'hi yolov5, i met this problem when i try to use the model in my project.the question has solved but i think it's enough classical to open a new issue to describe itrepreductin yolov5 repo, the infer file .原创 2021-03-25 11:46:12 · 6043 阅读 · 0 评论 -
PyTorch中的No module named models?
PyTorch中的No module named models?原创迷途小书童的Note迷途小书童的Note2020/07/28 16:21阅读数 1.4K本文被收录于专区AI & 大数据进入专区参与更多专题讨论软硬件环境 ubuntu 18.04 64bit anaconda with 3.7 nvidia gtx 1070Ti cuda 10.1 pytorch 1.5 问题在使用pytorch深度学.原创 2021-03-25 10:54:17 · 1870 阅读 · 1 评论 -
python dlib 安装
1、下载后解压dlib:http://dlib.net/2、python setup.py install可能出现的问题sdk 8.1找不到,cmake找不到原创 2021-02-22 16:26:40 · 201 阅读 · 0 评论 -
conda 创建环境
查看环境conda info -e创建环境conda create -n BBBpython=3.6克隆环境conda create -n BBB --clone AAA不同电脑下只需要将环境路径给了就好conda create -n BBB --clone ~/path激活环境conda activate BBB关闭环境conda deactivate删除环境conda remove -n BBB --all...原创 2020-11-25 15:20:39 · 133 阅读 · 0 评论