最新 最热

PyTorch 常用 Tricks 总结

设置当前使用的GPU设备为0, 1号两个设备,名称依次为 /gpu:0、/gpu:1: os.environ["CUDA_VISIBLE_DEVICES"] = "0,1" ,根据顺序表示优先使用0号设备,然后使用1号设备。...

2022-10-27
0

《解密并行和分布式深度学习:深度并发分析》摘要记录

在单个处理器上处理图所需的时间是T_1 = W,在无限多个进程上处理图所需的时间是。计算中的平均并行度是,在个处理器上的执行时间受限于:

2022-09-02
0

command ‘:/usr/local/cuda/bin/nvcc‘ failed with exit status 1

command ‘:/usr/local/cuda/bin/nvcc’ failed with exit status 1

2022-09-02
0

torch.cuda命令查询

2) 查看当前使用的GPU序号:torch.cuda.current_device()

2022-09-02
0

torch.manual_seed( )

在神经网络中,参数默认是进行随机初始化的。如果不设置的话每次训练时的初始化都是随机的,导致结果不确定。如果设置初始化,则每次初始化都是固定的。...

2022-09-02
0

PyTorch入门(六):模型的训练套路

主要就是在:网络模型、数据(输入、标签)、损失函数上设置 .cuda() 模式即可

2022-08-08
0

Error unsupported compiler 9.3.0

本文记录 Error: unsupported compiler: 9.3.0 解决方案。 错误 安装cuda 10.2 时报错 Error: unsupported compiler: 9.3.0解决方案sudo apt-get remove gcc gcc-9sudo apt-get remove ...

2022-08-05
0

pytorch中的torch.manual_seed(myseed) 和 torch.cuda.manual_seed(myseed)

myseed = 45216 使用方法: 为CPU中设置种子,生成随机数 torch.manual_seed(myseed) 为特定GPU设置种子,生成随机数 torch.cuda.manual_seed(myseed) 为所有GPU设置种子,生成随机数 torch.cuda.manual_seed_al......

2021-05-10
0

GPUDockerfile实例:tensorflow-gpu

tensorflow 与cuda对应版本ubuntu 1604.py3 DockerfileFROM scratchADD ubuntu-xenial-core-cloudimg-amd64-root.tar.gz /# a few minor docker-specific tweaks# see htt...

2021-01-14
0

dockerfile:tensorflow:cuda-7.5

# mbuckler/tf-faster-rcnn-deps## Dockerfile to hold dependencies for the Tensorflow implmentation# of Faster RCNNFROM mbuckler/tensorflow:cuda-7.5WORKDIR /...

2021-01-14
0