├── .gitattributes └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # pytorch cookbook 2 | 3 | > pytorch常用代码段、踩过的坑、小技巧整理,不定期更新中 4 | 5 | 6 | 7 | * [PyTorch Cookbook(常用代码段整理合集)](https://zhuanlan.zhihu.com/p/59205847) 8 | * [如何给你PyTorch里的Dataloader打鸡血](https://zhuanlan.zhihu.com/p/66145913) 9 | * [PyTorch踩过的坑](https://zhuanlan.zhihu.com/p/59205847) 10 | * [万字综述,核心开发者全面解读PyTorch内部机制](https://zhuanlan.zhihu.com/p/59205847) 11 | * [pytorch常见的坑汇总](https://zhuanlan.zhihu.com/p/77952356) 12 | * [给pytorch 读取数据加速](https://zhuanlan.zhihu.com/p/72956595) 13 | * [pytorch多gpu并行训练](https://zhuanlan.zhihu.com/p/86441879) 14 | * [Pytorch的12个坑](https://zhuanlan.zhihu.com/p/91485607) 15 | * [pytorch分布式训练](https://zhuanlan.zhihu.com/p/58620622) 16 | * [Pytorch Sampler详解](https://zhuanlan.zhihu.com/p/82985227) 17 | * [pytorch 关于 learning rate](https://zhuanlan.zhihu.com/p/39020473) 18 | * [PyTorch手把手自定义Dataloader读取数据](https://zhuanlan.zhihu.com/p/35698470) 19 | * [Pytorch的模型结构可视化(tensorboard)](https://zhuanlan.zhihu.com/p/58961505) 20 | * [torch.backends.cudnn.benchmark ?!](https://zhuanlan.zhihu.com/p/73711222) 21 | * [Pytorch 提速指南](https://zhuanlan.zhihu.com/p/39752167) 22 | * [当代研究生应当掌握的并行训练方法(单机多卡)](https://zhuanlan.zhihu.com/p/98535650) 23 | 24 | 25 | 26 | 27 | --------------------------------------------------------------------------------