pytorch的一些知识点整理

pytorch的一个比较全面的流程解析

https://zhuanlan.zhihu.com/p/25572330

一个使用cifr10数据集分类的基本例子,理解了这个差不多就对这个框架的流程有一个大致的认识了

http://yongyitang92.github.io/2017/01/21/20170121-Pytorch%E5%85%A5%E9%97%A8%E7%AC%94%E8%AE%B0/

pytorch之dataloader深入剖析

https://www.cnblogs.com/ranjiewen/p/10128046.html

ImageFolder解析

https://www.cnblogs.com/king-lps/p/8674829.html

Resnet 的实现

http://h4mster.top/2018/11/03/pytorch-torch-nn/

 

L1和L2范数详解

https://blog.csdn.net/zouxy09/article/details/24971995

各种norm

https://blog.csdn.net/baishuo8/article/details/81212317

_, preds = torch.max(outputs.data, 1)

torch.max(a,1) 返回每一行中最大值的那个元素,且返回其索引(返回最大元素在这一行的列索引)

https://blog.csdn.net/Z_lbj/article/details/79766690

 

RuntimeError: 
        An attempt has been made to start a new process before the
        current process has finished its bootstrapping phase.

补充一个小的知识点:python代码在linux下运行的好好的时候,移至到windows平台时可能需要squeeze_suport 错误,是因为

在Windows上,子进程将在启动时导入(即执行)主模块。您需要在主模块中插入一个if   __name__ == ' _main__': guard,以避免递归地创建子进程。。将顺序执行的代码放入main 当中就可以避免这个错误。

你可能感兴趣的:(pytorch的一些知识点整理)