上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 74 下一页
摘要: Python字典保存为Json格式化文件 TypeError: Object of type ‘ndarray‘ is not JSON serializable Python JSON 保存json文件: import json info = {"key_1": "value_1", "key_2 阅读全文
posted @ 2022-07-23 14:06 Picassooo 阅读(1215) 评论(0) 推荐(0)
摘要: 把docker打包成镜像的命令: et cm [镜像名字] [镜像版本说明] 例如: et cm detection pytorch1.11-python3.8-cuda11.4 打包了一个名叫 detection的镜像,镜像中的一些库的版本是pytorch1.11-python3.8-cuda11 阅读全文
posted @ 2022-07-23 10:26 Picassooo 阅读(327) 评论(0) 推荐(0)
摘要: 一般我们会用pip list查看所有安装了的包,但是想快速知道是否安装了某个包时,用 pip show [包名字] 更方便快捷。pip show 命令可以给出包的版本、安装路径、包的作者和包的依赖等信息。 阅读全文
posted @ 2022-07-21 10:11 Picassooo 阅读(4963) 评论(0) 推荐(0)
摘要: 在创建docker时配置较大的共享内存,加入参数--shm-size="15g",设置15g(根据实际情况酌量设置)的共享内存: nvidia-docker run -it --name [container_name] --shm-size="15g" ... 这样可以在训练神经网络时把numbe 阅读全文
posted @ 2022-07-20 23:35 Picassooo 阅读(1956) 评论(0) 推荐(0)
摘要: Shell中的$0、$1、$2的含义 阅读全文
posted @ 2022-07-20 23:29 Picassooo 阅读(362) 评论(0) 推荐(0)
摘要: 花了两天,终于把 Python 的 setup.py 给整明白了 阅读全文
posted @ 2022-07-20 18:36 Picassooo 阅读(51) 评论(0) 推荐(0)
摘要: pip install -r requirements.txt -r, --requirement Install from the given requirements file. This option can be used multiple times. -t: 安装到指定位置。 -e: 安 阅读全文
posted @ 2022-07-20 18:26 Picassooo 阅读(769) 评论(0) 推荐(0)
摘要: COCO pretrained ResNet18: https://drive.google.com/file/d/1PgI52M_N9NYipMm9kl8eMCUQGGDHvmVK/view ImangeNet pretrained DLA models: http://dl.yf.io/dla/ 阅读全文
posted @ 2022-07-19 23:06 Picassooo 阅读(97) 评论(0) 推荐(0)
摘要: COCO数据集介绍 COCO数据集的简介 COCO数据集解析 阅读全文
posted @ 2022-07-19 10:58 Picassooo 阅读(264) 评论(0) 推荐(0)
摘要: Pose Estimation:DensePose 阅读全文
posted @ 2022-07-19 10:30 Picassooo 阅读(42) 评论(0) 推荐(0)
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 74 下一页