Skip to content

Commit 4745e7c

Browse files
authored
Update README.md
1 parent 17b6ca9 commit 4745e7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The VideoFrameDataset class (an implementation of `torch.utils.data.Dataset`) se
1717
video dataset to have a certain structure on disk and expects a .txt annotation file that enumerates each video sample. Details on this
1818
can be found below. Pre-made annotation files and preparation scripts are also provided for [Kinetics 400](https://github.com/cvdfoundation/kinetics-dataset), [Something Something V2](https://20bn.com/datasets/something-something) and [Epic Kitchens 100](https://epic-kitchens.github.io/2021).
1919
2) Efficiently because the video loading pipeline that this class implements is very fast. This minimizes GPU waiting time during training by eliminating CPU input bottlenecks that can slow down training time by several folds.
20-
3) Effectively because the implemented sampling strategy for video frames is very practical. Video training using the entire sequence of
20+
3) Effectively because the implemented sampling strategy for video frames is very representative. Video training using the entire sequence of
2121
video frames (often several hundred) is too memory and compute intense. Therefore, this implementation samples frames evenly from the video (sparse temporal sampling)
2222
so that the loaded frames represent every part of the video, with support for arbitrary and differing video lengths within the same dataset.
2323
This approach has shown to be very effective and is taken from

0 commit comments

Comments
 (0)