Skip to main content

Load video datasets to PyTorch DataLoader

Project description

VDataset

Description

Load video datasets to PyTorch DataLoader. (Custom Video Data set for PyTorch DataLoader)
VDataset can be use to load 20BN-Jester dataset to the PyTorch DataLoader

Required Libraries

  • torch
  • torchvision
  • Pillow
  • pandas

Arguments for constructor

Argument Type Required Description
csv_file str True Path to .csv file
root_dir str True Root Directory of the video dataset
file_format str False File type of the frame images (ex: .jpg, .jpeg, .png)
id_col_name str False Column name, where id/name of the video on the .csv file
label_col_name str False Column name, where label is on the .csv file
frames_limit_mode str/None False Mode of the frame count detection ("manual", "csv" or else it auto detects all the frames available)
frames_limit int False Number of frames in a video (required if frames_count_mode set to "manual")
frames_limit_col_name str False Column name, where label is on the .csv file (required if frames_count_mode set to "csv")
frames_resize tuple/None False Resize the frames (Also this can be done on using transform too)

Usage

from torch.utils.data import DataLoader
from torchvision import transforms

transforms = transforms.Compose([transforms.Resize((100, 100)),
                                       transforms.ToTensor()])

vdataset = VDataset(csv_file='path-to-csv-file.csv', root_dir='path-to-video-dir', transform=transforms)
dataloader = DataLoader(vdataset, batch_size=64) # use in DataLoader


for image, label in dataloader: # Do what do you want in dataset
    print(image, label)
    break

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vdataset-0.0.2.tar.gz (3.7 kB view hashes)

Uploaded Source

Built Distribution

vdataset-0.0.2-py3-none-any.whl (4.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page