# MovingMNIST **Repository Path**: johnnyjoyjj/MovingMNIST ## Basic Information - **Project Name**: MovingMNIST - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-04 - **Last Updated**: 2021-07-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # MovingMNIST Simple PyTorch dataset of [Moving MNIST](http://www.cs.toronto.edu/~nitish/unsupervised_video/) dataset. With auto download. ## Example ``` import torch from MovingMNIST import MovingMNIST train_set = MovingMNIST(root='.data/mnist', train=True, download=True) train_loader = torch.utils.data.DataLoader( dataset=train_set, batch_size=100, shuffle=True) ```