Unverified Commit 5266a725 authored by Philip Meier's avatar Philip Meier Committed by GitHub
Browse files

include intended structure of root directory in docstring of Kinetics400 (#3453)



* include intended structure of root directory in docstring of Kinetics400

* fix syntax
Co-authored-by: default avatarFrancisco Massa <fvsmassa@gmail.com>
parent 4076d7bf
...@@ -23,7 +23,18 @@ class Kinetics400(VisionDataset): ...@@ -23,7 +23,18 @@ class Kinetics400(VisionDataset):
Internally, it uses a VideoClips object to handle clip creation. Internally, it uses a VideoClips object to handle clip creation.
Args: Args:
root (string): Root directory of the Kinetics-400 Dataset. root (string): Root directory of the Kinetics-400 Dataset. Should be structured as follows:
.. code::
root/
├── class1
│ ├── clip1.avi
│ ├── clip2.avi
│ └── ...
└── class2
├── clipx.avi
└── ...
frames_per_clip (int): number of frames in a clip frames_per_clip (int): number of frames in a clip
step_between_clips (int): number of frames between each clip step_between_clips (int): number of frames between each clip
transform (callable, optional): A function/transform that takes in a TxHxWxC video transform (callable, optional): A function/transform that takes in a TxHxWxC video
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment