Datasets:
File size: 493 Bytes
1fd7d1a c40aa4a 1fd7d1a c40aa4a 1fd7d1a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # 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 |