Datasets:
| # Evaluation script for clips - Point-wise accuracy | |
| clips_gt.json contains ground truth labels for all clips in the dataset. | |
| Save your predicitons in a json file with this format: | |
| ```json | |
| { | |
| "<clip_name>": { | |
| "<frame number>": [<x-coordinate>, <y-coordinate>], | |
| "<frame number>": [<x-coordinate>, <y-coordinate>], | |
| ... | |
| }, | |
| ... | |
| } | |
| ``` | |
| Where clip\_name should be same as the \_\_key\_\_ of the webDataset sample. | |
| To evaluate use: | |
| ```bash | |
| python eval.py --predictions PATH_TO_JSON |