Improve model card and add metadata
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
| 1 |
-
|
| 2 |
-
|
|
|
|
|
|
|
| 3 |
|
| 4 |
<div align="center">
|
| 5 |
<h2>DeH4R: A Decoupled and Hybrid Method for Road Network Graph Extraction</h2>
|
|
@@ -8,11 +10,32 @@
|
|
| 8 |
</a>
|
| 9 |
</div>
|
| 10 |
|
| 11 |
-
Pretrained checkpoints
|
| 12 |
-
|
| 13 |
|
| 14 |
## **Intro**
|
| 15 |
-
DeH4R unifies graph-growing dynamics with graph-generating efficiency through a decoupling strategy,
|
| 16 |
-
|
| 17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
pipeline_tag: image-segmentation
|
| 4 |
+
---
|
| 5 |
|
| 6 |
<div align="center">
|
| 7 |
<h2>DeH4R: A Decoupled and Hybrid Method for Road Network Graph Extraction</h2>
|
|
|
|
| 10 |
</a>
|
| 11 |
</div>
|
| 12 |
|
| 13 |
+
Pretrained checkpoints for the paper [DeH4R: A Decoupled and Hybrid Method for Road Network Graph Extraction](https://arxiv.org/abs/2508.13669).
|
|
|
|
| 14 |
|
| 15 |
## **Intro**
|
| 16 |
+
DeH4R unifies graph-growing dynamics with graph-generating efficiency through a decoupling strategy, effectively harnessing their complementary strengths, which offers great flexibility and is able to grow the graph in parallel from multiple points. DeH4R achieves new SOTA results with a significant improvement over previous methods and exceptional inference speed on two mainstream public benchmarks.
|
| 17 |
+
|
| 18 |
+
For more details, please visit the [official GitHub repository](https://github.com/7777777FAN/DeH4R).
|
| 19 |
+
|
| 20 |
+
## **Inference**
|
| 21 |
+
After setting up the environment and preparing the data as described in the repository, you can run inference using the following command:
|
| 22 |
+
|
| 23 |
+
```bash
|
| 24 |
+
python infer.py --config=./config/cityscale/final_sam2.yml \
|
| 25 |
+
--ckpt=./path/to/checkpoint.ckpt # or *.pth
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
+
⚠️ Note: DeH4R supports three graph building modes: `DECODE`, `TRACE`, and `DECODE & TRACE`, where `TRACE` means graph expansion (growing). The mode is decided from the config file.
|
| 29 |
|
| 30 |
+
## **Citation**
|
| 31 |
+
```bibtex
|
| 32 |
+
@misc{gong2025deh4rdecoupledhybridmethod,
|
| 33 |
+
title={DeH4R: A Decoupled and Hybrid Method for Road Network Graph Extraction},
|
| 34 |
+
author={Dengxian Gong and Shunping Ji},
|
| 35 |
+
year={2025},
|
| 36 |
+
eprint={2508.13669},
|
| 37 |
+
archivePrefix={arXiv},
|
| 38 |
+
primaryClass={cs.CV},
|
| 39 |
+
url={https://arxiv.org/abs/2508.13669},
|
| 40 |
+
}
|
| 41 |
+
```
|