摘要: Linux 教程|菜鸟教程 非常好的网站 【man (manual)】此命令可以打印出其他命令的使用方法 man + program 显示用法,比如 man df 【help】查看帮助文档 ls --help # 显示 ls 的帮助信息 help ls # ... 【Bash 键盘快捷键】 ctrl 阅读全文
posted @ 2020-01-04 11:09 Gelthin 阅读(165) 评论(0) 推荐(0)
摘要: 1. 大幅度提升 Pytorch 的训练速度 device = torch.device("cuda" if torch.cuda.is_available() else "cpu") torch.backends.cudnn.benchmark = True 但加了这一行,似乎运行结果可能会存在细 阅读全文
posted @ 2020-01-04 09:35 Gelthin 阅读(1897) 评论(0) 推荐(0)