使用Google的Colab+pytorch

. 打开Google的Colab

. 运行:

!pip install torch
!pip install torchtext
!python -m spacy download en
!pip install scapy

# K80 gpu for 12 hours
import torch
from torch import nn, optim
# from torchtext import datasets
from torchtext.legacy import data,datasets

print('GPU:', torch.cuda.is_available())

torch.manual_seed(123)

Goolge的Colab是一个免费的训练环境(使用需要学会科学上网),运行一次只能保存12小时,所以在每次使用前先配置环境。!pip install +包

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