Datasets:

Modalities:
Image
Text
Formats:
webdataset
ArXiv:
Libraries:
Datasets
WebDataset
License:
niranjangaurav17 commited on
Commit
1fd7d1a
·
verified ·
1 Parent(s): b26f43c

Create README.md

Browse files
Files changed (1) hide show
  1. evaluation/clips/README.md +19 -0
evaluation/clips/README.md ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Evaluation script for clips - Point-wise accuracy
2
+
3
+ clips_gt.json contains ground truth labels for all clips in the dataset.
4
+
5
+ Save your predicitons in a json file with this format:
6
+ ```json
7
+ {
8
+ "<clip_name>": {
9
+ "<frame number>": [<x-coordinate>, <y-coordinate>],
10
+ "<frame number>": [<x-coordinate>, <y-coordinate>],
11
+ ...
12
+ },
13
+ ...
14
+ }
15
+ ```
16
+
17
+ Use:
18
+ ```bash
19
+ python eval.py --predictions PATH_TO_JSON