ava-dataset-tool
ava-dataset-tool copied to clipboard
Preprocessing tools for Google AVA Dataset
Results
2
ava-dataset-tool issues
Sort by
recently updated
recently updated
newest added
I want to use 3 seconds clip which has been cut. However, the dataset loading method of my model is openCV. Then, I find that the center frame is not...
The following line of code contains the wrong key for reading the action ID from the ava_train_v2.1.csv from [here](https://research.google.com/ava/download.html) `action_string = action_name[int(anno_data[idx][-1])]` However changing that to, `action_string = action_name[int(anno_data[idx][6])]` will...