pytorch学习笔记一:pytorch学习的路线图

1. gpu加速,tensor 和autograd(向量和自动求导)
2. 神经网络工具箱

  1. gpu加速

示例代码:

import torch
import time

print(torch.__version__)
print(torch.cuda.is_available())

a = torch.randn(10000, 

你可能感兴趣的:(深度学习,pytorch,pytorch,学习,深度学习)