Datasets:

ArXiv:
nielsr HF Staff commited on
Commit
2930a48
Β·
verified Β·
1 Parent(s): 81eede5

Add task categories and link to GREx paper

Browse files

Hi! I'm Niels from the community science team at Hugging Face. I've updated the dataset card for gRefCOCO to improve its discoverability and documentation.

This PR:
- Adds relevant `task_categories` to the metadata: `image-segmentation`, `object-detection`, and `image-to-text`.
- Updates the header to include a link to the consolidated paper: [GREx: Generalized Referring Expression Segmentation, Comprehension, and Generation](https://huggingface.co/papers/2601.05244).
- Maintains the existing usage examples for training and inference based on MDETR.

This should help users find the dataset when filtering by task and provide them with the necessary context from the latest paper.

Files changed (1) hide show
  1. README.md +23 -26
README.md CHANGED
@@ -1,14 +1,23 @@
1
- # gRefCOCO - Dataset for [CVPR2023 Highlight] GRES: Generalized Referring Expression Segmentation
 
 
 
 
 
 
 
 
2
  [![PyTorch](https://img.shields.io/badge/PyTorch-1.11.0-%23EE4C2C.svg?style=&logo=PyTorch&logoColor=white)](https://pytorch.org/)
3
  [![Python](https://img.shields.io/badge/Python-3.7%20|%203.8%20|%203.9-blue.svg?style=&logo=python&logoColor=ffdd54)](https://www.python.org/downloads/)
4
  [![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/gres-generalized-referring-expression-1/generalized-referring-expression-segmentation)](https://paperswithcode.com/sota/generalized-referring-expression-segmentation?p=gres-generalized-referring-expression-1)
5
 
6
- **[🏠[Project page]](https://henghuiding.github.io/GRES/)**   **[πŸ“„[GRES Arxiv]](https://arxiv.org/abs/2306.00968)**   **[πŸ“„[GREC Arxiv]](https://arxiv.org/abs/2308.16182)**
 
 
 
 
7
 
8
- This repository contains information and tools for the [gRefCOCO](https://henghuiding.github.io/GRES/) dataset, proposed by the **CVPR2023 Highlight** paper:
9
- > [GRES: Generalized Referring Expression Segmentation](https://arxiv.org/abs/2306.00968)
10
- > Chang Liu, Henghui Ding, Xudong Jiang
11
- > CVPR 2023 Highlight, Acceptance Rate 2.5%
12
 
13
  <div align="center">
14
  <img src="https://github.com/henghuiding/ReLA/blob/main/imgs/fig1.png?raw=true" width="100%" height="100%"/>
@@ -54,9 +63,15 @@ Our project is built upon [refer](https://github.com/lichengunc/refer) and [coco
54
 
55
 
56
  ## BibTeX
57
- Please consider to cite GRES/GREC if it helps your research.
58
 
59
  ```bibtex
 
 
 
 
 
 
60
  @inproceedings{GRES,
61
  title={{GRES}: Generalized Referring Expression Segmentation},
62
  author={Liu, Chang and Ding, Henghui and Jiang, Xudong},
@@ -69,22 +84,4 @@ Please consider to cite GRES/GREC if it helps your research.
69
  journal={arXiv preprint arXiv:2308.16182},
70
  year={2023}
71
  }
72
- ```
73
- We also recommend other highly related works:
74
- ```bibtex
75
- @article{VLT,
76
- title={{VLT}: Vision-language transformer and query generation for referring segmentation},
77
- author={Ding, Henghui and Liu, Chang and Wang, Suchen and Jiang, Xudong},
78
- journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
79
- year={2023},
80
- volume={45},
81
- number={6},
82
- publisher={IEEE}
83
- }
84
- @inproceedings{MeViS,
85
- title={{MeViS}: A Large-scale Benchmark for Video Segmentation with Motion Expressions},
86
- author={Ding, Henghui and Liu, Chang and He, Shuting and Jiang, Xudong and Loy, Chen Change},
87
- booktitle={ICCV},
88
- year={2023}
89
- }
90
- ```
 
1
+ ---
2
+ task_categories:
3
+ - image-segmentation
4
+ - object-detection
5
+ - image-to-text
6
+ ---
7
+
8
+ # gRefCOCO - Dataset for Generalized Referring Expression Segmentation, Comprehension, and Generation (GREx)
9
+
10
  [![PyTorch](https://img.shields.io/badge/PyTorch-1.11.0-%23EE4C2C.svg?style=&logo=PyTorch&logoColor=white)](https://pytorch.org/)
11
  [![Python](https://img.shields.io/badge/Python-3.7%20|%203.8%20|%203.9-blue.svg?style=&logo=python&logoColor=ffdd54)](https://www.python.org/downloads/)
12
  [![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/gres-generalized-referring-expression-1/generalized-referring-expression-segmentation)](https://paperswithcode.com/sota/generalized-referring-expression-segmentation?p=gres-generalized-referring-expression-1)
13
 
14
+ **[🏠[Project page]](https://henghuiding.github.io/GRES/)** &emsp; **[πŸ“„[Paper (GREx)]](https://huggingface.co/papers/2601.05244)** &emsp; **[πŸ“„[GRES Arxiv]](https://arxiv.org/abs/2306.00968)** &emsp; **[πŸ“„[GREC Arxiv]](https://arxiv.org/abs/2308.16182)**
15
+
16
+ This repository contains information and tools for the **gRefCOCO** dataset, proposed in the paper:
17
+ > [GREx: Generalized Referring Expression Segmentation, Comprehension, and Generation](https://huggingface.co/papers/2601.05244)
18
+ > Chang Liu, Henghui Ding, Xudong Jiang
19
 
20
+ gRefCOCO is the first large-scale GREx dataset that contains multi-target, no-target, and single-target expressions and their corresponding images with labeled targets. It is designed to be backward-compatible with classic Referring Expression (REx) tasks.
 
 
 
21
 
22
  <div align="center">
23
  <img src="https://github.com/henghuiding/ReLA/blob/main/imgs/fig1.png?raw=true" width="100%" height="100%"/>
 
63
 
64
 
65
  ## BibTeX
66
+ Please consider to cite GRES/GREC/GREx if it helps your research.
67
 
68
  ```bibtex
69
+ @article{GREx,
70
+ title={{GREx}: Generalized Referring Expression Segmentation, Comprehension, and Generation},
71
+ author={Liu, Chang and Ding, Henghui and Jiang, Xudong},
72
+ journal={arXiv preprint arXiv:2601.05244},
73
+ year={2026}
74
+ }
75
  @inproceedings{GRES,
76
  title={{GRES}: Generalized Referring Expression Segmentation},
77
  author={Liu, Chang and Ding, Henghui and Jiang, Xudong},
 
84
  journal={arXiv preprint arXiv:2308.16182},
85
  year={2023}
86
  }
87
+ ```