Add HSG paper and code links, update task category
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,14 +1,48 @@
|
|
| 1 |
---
|
| 2 |
pretty_name: msg
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
| 4 |
# Multiview Scene Graph (NeurIPS 2024)
|
| 5 |
-
This is the dataset
|
| 6 |
-
>[**Multiview Scene Graph**](https://www.ai4ce.github.io/MSG)
|
| 7 |
>
|
| 8 |
-
>Juexiao Zhang, Gao Zhu, Sihang Li, Xinhao Liu, Haorui Song, Xinran Tang, Chen Feng
|
| 9 |
>
|
| 10 |
-
>New York University
|
| 11 |
|
| 12 |
[[arXiv]](https://arxiv.org/abs/2410.11187)
|
| 13 |
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
pretty_name: msg
|
| 3 |
+
task_categories:
|
| 4 |
+
- graph-ml
|
| 5 |
---
|
| 6 |
+
|
| 7 |
# Multiview Scene Graph (NeurIPS 2024)
|
| 8 |
+
This is the dataset for:
|
| 9 |
+
> [**Multiview Scene Graph**](https://www.ai4ce.github.io/MSG)
|
| 10 |
>
|
| 11 |
+
> Juexiao Zhang, Gao Zhu, Sihang Li, Xinhao Liu, Haorui Song, Xinran Tang, Chen Feng
|
| 12 |
>
|
| 13 |
+
> New York University
|
| 14 |
|
| 15 |
[[arXiv]](https://arxiv.org/abs/2410.11187)
|
| 16 |
|
| 17 |
+
# HSG: Hyperbolic Scene Graph
|
| 18 |
+
This dataset is also used in the paper:
|
| 19 |
+
> [**HSG: Hyperbolic Scene Graph**](https://huggingface.co/papers/2604.17454)
|
| 20 |
+
>
|
| 21 |
+
> Liyang Wang, Zeyu Zhang, and Hao Tang
|
| 22 |
+
|
| 23 |
+
[[Code]](https://github.com/AIGeeksGroup/HSG)
|
| 24 |
+
|
| 25 |
+
## Introduction
|
| 26 |
+
HSG is a **hyperbolic representation learning framework** that models scene graphs in non-Euclidean space to better capture hierarchical relationships for structured 3D scene understanding.
|
| 27 |
+
|
| 28 |
+
HSG data is converted from Apple's [ARKitScenes](https://github.com/apple/ARKitScenes) by transforming its 3D annotations to 2D.
|
| 29 |
+
|
| 30 |
+
## License
|
| 31 |
+
This dataset is based on Apple's [ARKitScenes](https://github.com/apple/ARKitScenes/tree/main) dataset, so please obey their [license](https://github.com/apple/ARKitScenes/blob/main/LICENSE).
|
| 32 |
+
|
| 33 |
+
## Citation
|
| 34 |
+
If you find this code or paper helpful, please consider citing:
|
| 35 |
+
```bibtex
|
| 36 |
+
@article{wang2026hsg,
|
| 37 |
+
title={HSG: Hyperbolic Scene Graph},
|
| 38 |
+
author={Wang, Liyang and Zhang, Zeyu and Tang, Hao},
|
| 39 |
+
year={2026}
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
@inproceedings{zhang2024multiview,
|
| 43 |
+
title={Multiview Scene Graph},
|
| 44 |
+
author={Zhang, Juexiao and Zhu, Gao and Li, Sihang and Liu, Xinhao fabric and Song, Haorui and Tang, Xinran and Feng, Chen},
|
| 45 |
+
booktitle={The Thirty-eighth Annual Conference on Neural Information Processing Systems},
|
| 46 |
+
year={2024}
|
| 47 |
+
}
|
| 48 |
+
```
|