Add model card for DA-Next

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +43 -0
README.md ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pipeline_tag: depth-estimation
4
+ ---
5
+
6
+ # DA-Next
7
+
8
+ DA-Next is a metric-scale spatial foundation model introduced as a baseline in the paper [SpatialBench: Is Your Spatial Foundation Model an All-Round Player?](https://huggingface.co/papers/2605.27367).
9
+
10
+ It is a metric-scale extension of [Depth Anything 3](https://github.com/ByteDance-Seed/Depth-Anything-3) that adds a scale head, a camera encoder, and ray-based pose decoding to improve spatial representation learning.
11
+
12
+ - **Paper:** [SpatialBench: Is Your Spatial Foundation Model an All-Round Player?](https://huggingface.co/papers/2605.27367)
13
+ - **Project Page:** [https://ropedia.github.io/SpatialBench/](https://ropedia.github.io/SpatialBench/)
14
+ - **Repository:** [https://github.com/Ropedia/SpatialBench](https://github.com/Ropedia/SpatialBench)
15
+
16
+ ## Usage
17
+
18
+ You can evaluate DA-Next via the unified harness provided in the SpatialBench repository:
19
+
20
+ ```bash
21
+ # Fetch the DA-Next submodule (one-time)
22
+ git submodule update --init --recursive DA-Next
23
+
24
+ # Evaluate DA-Next via the unified harness
25
+ python benchmark/evaluation/run_benchmark.py \
26
+ --config benchmark/configs/end2end/danext_eval.yaml
27
+ ```
28
+
29
+ ## Citation
30
+
31
+ If DA-Next or SpatialBench is useful for your research, please cite:
32
+
33
+ ```bibtex
34
+ @misc{peng2026spatialbench,
35
+ title={SpatialBench: Is Your Spatial Foundation Model an All-Round Player?},
36
+ author={Haosong Peng and Hao Li and Jiaqi Chen and Yuhao Pan and Runmao Yao and Yalun Dai and Fushuo Huo and Fangzhou Hong and Zhaoxi Chen and Haozhao Wang and Dingwen Zhang and Ziwei Liu and Wenchao Xu},
37
+ year={2026},
38
+ eprint={2605.27367},
39
+ archivePrefix={arXiv},
40
+ primaryClass={cs.CV},
41
+ url={https://arxiv.org/abs/2605.27367},
42
+ }
43
+ ```