nielsr HF staff commited on
Commit
d6b2d9a
1 Parent(s): 04e6715

Link dataset to paper, add tags

Browse files

Hi,

Niels here from the open-source team at HF. Congrats on having your work accepted as an ECCV Oral.

This PR aims to improve the discoverability of your work by linking it to https://huggingface.co/papers/2407.11294 and adding appropriate tags.

Btw, have you considered making your dataset available through the Datasets library? See here for a guide: https://huggingface.co/docs/datasets/loading.

This way, people could do:

```python
from datasets import load_dataset

dataset = load_dataset("Arking95/COHO")

# access first row
example = dataset["train"][0]
```

Cheers!

Files changed (1) hide show
  1. README.md +4 -1
README.md CHANGED
@@ -1,8 +1,11 @@
1
  ---
2
  license: apache-2.0
 
 
 
3
  ---
4
 
5
- The official dataset release of paper [ECCV 2024]: COHO: Context-Sensitive City-Scale Hierarchical Urban Layout Generation
6
 
7
  See "Files and versions" section for the dataset named: "COHO.tar.gz"
8
 
 
1
  ---
2
  license: apache-2.0
3
+ tags:
4
+ - layout-generation
5
+ - urban-modeling
6
  ---
7
 
8
+ The official dataset release of paper ECCV 2024: [COHO: Context-Sensitive City-Scale Hierarchical Urban Layout Generation](https://huggingface.co/papers/2407.11294)
9
 
10
  See "Files and versions" section for the dataset named: "COHO.tar.gz"
11