HMDB51#

HMDB51 is an action recognition dataset containing a total of 6,766 clips distributed across 51 action classes.

Details

Example usage

 1import fiftyone as fo
 2import fiftyone.zoo as foz
 3import fiftyone.utils.video as fouv
 4
 5dataset = foz.load_zoo_dataset("hmdb51", split="test")
 6
 7# Re-encode source videos as H.264 MP4s so they can be viewed in the App
 8fouv.reencode_videos(dataset)
 9
10session = fo.launch_app(dataset)

Note

In order to work with video datasets, you’ll need to have ffmpeg installed.

hmdb51-test