nielsr HF Staff commited on
Commit
ad72bbf
·
verified ·
1 Parent(s): 13ab4dc

Add task category and links to paper, project page, and code

Browse files

This PR improves the dataset card by:
- Adding the `image-to-image` task category to the metadata.
- Linking the dataset to the paper, project page, and official GitHub repository.
- Including the official BibTeX citation.
- Organizing the content for better readability.

Files changed (1) hide show
  1. README.md +21 -1
README.md CHANGED
@@ -1,9 +1,18 @@
1
  ---
2
  license: mit
 
 
3
  ---
4
- ## CVPR 2026 Highlight--GOR-IS (https://applezyh.github.io/GOR-IS-project-page/)
 
 
 
 
 
 
5
  We provide a comprehensive suite of datasets, including our proposed **GOR-IS-Synthetic** and **GOR-IS-Real**, along with additional real-world scenes (**Additional-Real**) sourced from Mip-NeRF 360 and Ref-Real, and synthetic scenes (**Additional-Synthetic**) featuring more complex inpainting textures. All datasets are fully preprocessed and contain the necessary components for our framework, enabling users to directly download, decompress, and use them without additional setup.
6
 
 
7
  The organization of the datasets is as follows:
8
  ```sh
9
  GOR-IS-datasets/
@@ -29,4 +38,15 @@ GOR-IS-datasets/
29
 
30
  ├── additional-synthetic/
31
  │ ├── ...
 
 
 
 
 
 
 
 
 
 
 
32
  ```
 
1
  ---
2
  license: mit
3
+ task_categories:
4
+ - image-to-image
5
  ---
6
+
7
+ # GOR-IS Datasets
8
+
9
+ [**Project Page**](https://applezyh.github.io/GOR-IS-project-page/) | [**Paper**](https://huggingface.co/papers/2605.00498) | [**GitHub**](https://github.com/applezyh/GOR-IS)
10
+
11
+ This repository contains the datasets for **GOR-IS: 3D Gaussian Object Removal in the Intrinsic Space**, presented as a Highlight at CVPR 2026.
12
+
13
  We provide a comprehensive suite of datasets, including our proposed **GOR-IS-Synthetic** and **GOR-IS-Real**, along with additional real-world scenes (**Additional-Real**) sourced from Mip-NeRF 360 and Ref-Real, and synthetic scenes (**Additional-Synthetic**) featuring more complex inpainting textures. All datasets are fully preprocessed and contain the necessary components for our framework, enabling users to directly download, decompress, and use them without additional setup.
14
 
15
+ ## Dataset Organization
16
  The organization of the datasets is as follows:
17
  ```sh
18
  GOR-IS-datasets/
 
38
 
39
  ├── additional-synthetic/
40
  │ ├── ...
41
+ ```
42
+
43
+ ## Citation
44
+ If you find our work is helpful, please consider citing:
45
+ ```bibtex
46
+ @inproceedings{zhao2026gor-is,
47
+ title={GOR-IS: 3D Gaussian Object Removal in the Intrinsic Space},
48
+ author={Yonghao Zhao and Yupeng Gao and Jian Yang and Jin Xie and Beibei Wang},
49
+ booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
50
+ year={2026}
51
+ }
52
  ```