上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 54 下一页

2022年3月24日

摘要: 问题 Err:2 http://cn.archive.ubuntu.com/ubuntu focal/universe amd64 libflann-dev amd64 1.9.1+dfsg-9build1 Connection failed [IP: 91.189.91.38 80] E: Fai 阅读全文
posted @ 2022-03-24 22:26 鹅要长大 阅读(980) 评论(0) 推荐(0)
摘要: 前言 一、nvidia与cuda版本之间的关系 CUDA 12.2 Release Notes CUDA Compatibility :: NVIDIA Data Center GPU Driver Documentation CUDA12.0.x开始支持的最低驱动版本是525.60.13; CUD 阅读全文
posted @ 2022-03-24 22:26 鹅要长大 阅读(663) 评论(0) 推荐(0)
摘要: git操作阶段 git操作 git 操作:git config --list # 查看git配置属性 git init git clone git pull origin branch_name(更新本地仓库) 修改本地仓库 git status git diff git add filename 阅读全文
posted @ 2022-03-24 22:26 鹅要长大 阅读(88) 评论(0) 推荐(0)

2022年1月18日

摘要: cmd CUDA_VISIBLE_DEVICES=1 python main.py cmd CUDA_VISIBLE_DEVICES=5, 6, 7 python main.py cmd: c++ CUDA_VISIBLE_DEVICES=1 ./maincpp 但是,在程序中指定gpu并没有正确运 阅读全文
posted @ 2022-01-18 16:02 鹅要长大 阅读(551) 评论(0) 推荐(0)

2021年12月31日

摘要: code binary_mask = (im_array[:,:,0] == 255) & (im_array[:,:,1] == 255) & (im_array[:,:,2] == 0) 参考 1. convert-rgb-image-to-index-image; 完 阅读全文
posted @ 2021-12-31 18:07 鹅要长大 阅读(53) 评论(0) 推荐(0)
摘要: 最后使用了system的语句close窗口; 但是如何自定义或者自动调整窗口大小的操作,还没找到哦啊; 参考 1. how-can-i-close-an-image-shown-to-the-user-with-the-python-imaging-library; 2. display-image 阅读全文
posted @ 2021-12-31 18:06 鹅要长大 阅读(121) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2021-12-31 18:06 鹅要长大 阅读(0) 评论(0) 推荐(0)
摘要: 参考 1. WGAN; 2. 距离度量完整版; 完 阅读全文
posted @ 2021-12-31 18:05 鹅要长大 阅读(264) 评论(0) 推荐(0)
摘要: APEX 如何安装 git clone https://github.com/NVIDIA/apex.git cd apex pip3 install --no-cache-dir --global-option="--pyprof" --global-option="--cpp_ext" --gl 阅读全文
posted @ 2021-12-31 18:05 鹅要长大 阅读(578) 评论(0) 推荐(0)

2021年12月11日

摘要: 参考 1. Unet; 2. code; 3. https://lmb.informatik.uni-freiburg.de/people/ronneber/u-net/; 完 阅读全文
posted @ 2021-12-11 20:42 鹅要长大 阅读(66) 评论(0) 推荐(0)
摘要: 何凯明 http://kaiminghe.com/ 程明明 https://mmcheng.net/cmm/ 程明明课题组 刘云 https://yun-liu.github.io/ 阅读全文
posted @ 2021-12-11 20:30 鹅要长大 阅读(167) 评论(0) 推荐(0)
摘要: 参考SNPE官方文档的步骤。本文以安装pytorch为例记录安装过程,其他类似。 一 准备工作 1)ubuntu18。04; 2)不同框架的安装步骤; 3)python3的环境; 二 SNPE的环境以及依赖 注意安装python的各种package; 三 pytorch环境的安装; 3.1 pyto 阅读全文
posted @ 2021-12-11 20:30 鹅要长大 阅读(795) 评论(0) 推荐(0)
摘要: 参考 1. attanet; 2. github; 完 阅读全文
posted @ 2021-12-11 20:30 鹅要长大 阅读(108) 评论(0) 推荐(0)
摘要: 参考 1. C3: Concentrated-Comprehensive Convolution and its application to semantic segmentation; 2. C3模块-空洞可分离卷积存在的问题及轻量化语义分割模型架构技巧; 3. C3_github; 完 阅读全文
posted @ 2021-12-11 20:20 鹅要长大 阅读(331) 评论(0) 推荐(0)
摘要: 参考 1. ExtremeC3Net: 使用高级C3模块的极轻量人像分割模型; 2. ExtremeC3Net_paper; 完 阅读全文
posted @ 2021-12-11 20:20 鹅要长大 阅读(163) 评论(0) 推荐(0)
摘要: 参考 1. pytorch系列 -- 9 pytorch nn.init 中实现的初始化函数 uniform, normal, const, Xavier, He initialization; 完 阅读全文
posted @ 2021-12-11 20:20 鹅要长大 阅读(98) 评论(0) 推荐(0)
摘要: 参考 1. 向上取整和向下取整; 完 阅读全文
posted @ 2021-12-11 19:35 鹅要长大 阅读(649) 评论(0) 推荐(0)
摘要: 1. 常规卷积 2. 分组卷积 2. 深度可分离卷积 Depthwise Convolution + Pointwise Convolution 2.1 Depthwise Convolution 2.2 Pointwise Convolution Depthwise(DW)卷积与Pointwise 阅读全文
posted @ 2021-12-11 19:35 鹅要长大 阅读(331) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2021-12-11 19:35 鹅要长大 阅读(0) 评论(0) 推荐(0)
摘要: 概念 随机数 伪随机数 随机种子 若采用random.random(),每次都按照一定的序列(默认的某一个参数)生成不同的随机数。 若采用随机数种子random.seed(100),它将在所设置的种子100范围内调用random()模块生成随机数,如果再次启动random.seed(100),它则按 阅读全文
posted @ 2021-12-11 18:09 鹅要长大 阅读(376) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 54 下一页

导航