chrisc36 commited on
Commit
40bb8c8
·
verified ·
1 Parent(s): de77c93

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -3
README.md CHANGED
@@ -1,3 +1,29 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+ # PixMo-Points
6
+ PixMo-Points is a dataset of images paired with referring expressions and points marking the locations the
7
+ referring expression refers to the image. It was collect using human annotators and contain a diverse
8
+ range of points and expressions, with many high-frequency (10+) expression.
9
+
10
+ PixMo-Points is a part of the [PixMo dataset collection](https://huggingface.co/collections/allenai/pixmo-674746ea613028006285687b) and was used to
11
+ provide the pointing capabilities of the [Molmo family of models](https://huggingface.co/collections/allenai/molmo-66f379e6fe3b8ef090a8ca19)
12
+
13
+ Quick links:
14
+ - 📃 [Paper](https://molmo.allenai.org/paper.pdf)
15
+ - 🎥 [Blog with Videos](https://molmo.allenai.org/blog)
16
+
17
+
18
+ ## Loading
19
+ ```python
20
+ pixmo_points_dataset = datasets.load_dataset("allenai/pixmo-points")
21
+ ```
22
+
23
+ ## Data Format
24
+ Images are stored as URLs that will need to be downloaded separately.
25
+ Image hashes are included to support double-checking that the downloaded image matches the annotated image.
26
+ It can be checked like this:
27
+
28
+ ```
29
+ ```