dddraxxx commited on
Commit
8a655cd
·
1 Parent(s): 0d43260

Add README and .gitattributes

Browse files
Files changed (2) hide show
  1. .gitattributes +1 -0
  2. README.md +41 -0
.gitattributes CHANGED
@@ -57,3 +57,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
60
+ *.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # RefCOCO JSON Files
2
+
3
+ This repository contains both original and filtered RefCOCO, RefCOCO+, and RefCOCOg JSON files.
4
+
5
+ ## Contents
6
+
7
+ ### Original Files
8
+ - refcoco_train.json
9
+ - refcoco_val.json
10
+ - refcoco_testA.json
11
+ - refcoco_testB.json
12
+ - refcocop_train.json
13
+ - refcocop_val.json
14
+ - refcocop_testA.json
15
+ - refcocop_testB.json
16
+ - refcocog_train.json
17
+ - refcocog_val.json
18
+ - refcocog_test.json
19
+ - flickr_single_bbox_train.json
20
+ - flickr_single_bbox_val.json
21
+ - flickr_single_bbox_test.json
22
+ - refgta_subsample.json
23
+
24
+ ### Filtered Files (Long Captions)
25
+ - filtered/refcoco_train_long_captions.json
26
+ - filtered/refcocop_train_long_captions.json
27
+ - filtered/refcocog_train_long_captions.json
28
+
29
+ ## Usage
30
+
31
+ The filtered JSON files contain a subset of the original data with longer, more descriptive captions. These are particularly useful for training models that benefit from richer linguistic descriptions.
32
+
33
+ ### Download and Setup
34
+
35
+ You can use the `prepare_data.sh` script from the VLM-R1 repository to download and set up these files:
36
+
37
+ ```bash
38
+ bash prepare_data.sh
39
+ ```
40
+
41
+ This will download both the original and filtered JSON files and set up the appropriate YAML configuration files.