Pytorch 使用常见问题查询手册
RuntimeError: CUDA error: invalid device ordinal
To use it, set CUDA_VISIBLE_DEVICES to a comma-separated list of device IDs to make only those devices visible to the application. Note that you can use this technique both to mask out devices or to change the visibility order of devices so that the CUDA runtime enumerates them in a specific order.Error(s) in loading state_dict for DataParallel
当模型使用并行GPU加速的时候,加载参数要注意 key 的处理。 注释掉下面这一行。
常见ERROR信息:
Missing key(s) in state_dictmodel_param = {k.replace('module.', ''): v for k, v in model_param.items()}
请多多指教。
文章标题:Pytorch 使用常见问题查询手册
本文作者:顺强
发布时间:2019-09-18, 23:59:00
原始链接:http://shunqiang.ml/pytorch-pytorch-faq/版权声明: "署名-非商用-相同方式共享 4.0" 转载请保留原文链接及作者。