# MovingMNIST **Repository Path**: deyiwang/MovingMNIST ## Basic Information - **Project Name**: MovingMNIST - **Description**: 处理movingmnist数据集的dataloader, pytorch - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-28 - **Last Updated**: 2021-04-28 ## 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) ```