remove unused random_split import from tutorial (#15716)

This commit is contained in:
yiftachbeer 2022-11-18 01:09:46 +02:00 committed by GitHub
parent 13eb2a1f91
commit b40ca0ece5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ Add the relevant imports at the top of the file
import torch.nn.functional as F
from torchvision import transforms
from torchvision.datasets import MNIST
from torch.utils.data import DataLoader, random_split
from torch.utils.data import DataLoader
import pytorch_lightning as pl
----