MackinationsAi
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,54 @@
|
|
1 |
-
---
|
2 |
-
license: cc-by-nc-4.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-nc-4.0
|
3 |
+
|
4 |
+
language:
|
5 |
+
- en
|
6 |
+
pipeline_tag: depth-estimation
|
7 |
+
tags:
|
8 |
+
- depth
|
9 |
+
- relative depth
|
10 |
+
---
|
11 |
+
|
12 |
+
# Depth-Anything-V2-Large
|
13 |
+
|
14 |
+
## Introduction
|
15 |
+
Depth Anything V2 is trained from 595K synthetic labeled images and 62M+ real unlabeled images, providing the most capable monocular depth estimation (MDE) model with the following features:
|
16 |
+
- more fine-grained details than Depth Anything V1
|
17 |
+
- more robust than Depth Anything V1 and SD-based models (e.g., Marigold, Geowizard)
|
18 |
+
- more efficient (10x faster) and more lightweight than SD-based models
|
19 |
+
- impressive fine-tuned performance with our pre-trained models
|
20 |
+
- models have been converted into .safetensors
|
21 |
+
|
22 |
+
## Installation
|
23 |
+
|
24 |
+
```bash
|
25 |
+
git clone https://github.com/MackinationsAi/Upgraded-Depth-Anything-V2.git
|
26 |
+
cd Upgraded-Depth-Anything-V2
|
27 |
+
install.bat
|
28 |
+
```
|
29 |
+
|
30 |
+
## Usage
|
31 |
+
|
32 |
+
Download the Depth-Anything-V2-Large model | 654.9M | [Download](https://huggingface.co/MackinationsAi/Depth-Anything-V2_Safetensors/resolve/main/depth_anything_v2_vitl.safetensors?download=true) | first and put it under the `checkpoints` directory.
|
33 |
+
Download the Depth-Anything-V2-Base model | 190.4M | [Download](https://huggingface.co/MackinationsAi/Depth-Anything-V2_Safetensors/resolve/main/depth_anything_v2_vitb.safetensors?download=true) | second and put it under the `checkpoints` directory.
|
34 |
+
Download the Depth-Anything-V2-Small model | 48.4M | [Download](https://huggingface.co/MackinationsAi/Depth-Anything-V2_Safetensors/resolve/main/depth_anything_v2_vits.safetensors?download=true) | third and put it under the `checkpoints` directory.
|
35 |
+
Download the Depth-Anything-V2-Giant model | 1.3B | Coming soon (Still not available) | [Download Doesn't Work - Model is still a WIP](https://huggingface.co/MackinationsAi/Depth-Anything-V2_Safetensors/resolve/main/depth_anything_v2_vitg.safetensors?download=true) | fourth and put it under the `checkpoints` directory.
|
36 |
+
|
37 |
+
## Citation
|
38 |
+
|
39 |
+
If you find this project useful, please consider citing below, give these converted models & upgraded linked repo a star/follow & share it w/ others in the community!
|
40 |
+
|
41 |
+
```bibtex
|
42 |
+
@article{depth_anything_v2,
|
43 |
+
title={Depth Anything V2},
|
44 |
+
author={Yang, Lihe and Kang, Bingyi and Huang, Zilong and Zhao, Zhen and Xu, Xiaogang and Feng, Jiashi and Zhao, Hengshuang},
|
45 |
+
journal={arXiv:2406.09414},
|
46 |
+
year={2024}
|
47 |
+
}
|
48 |
+
|
49 |
+
@inproceedings{depth_anything_v1,
|
50 |
+
title={Depth Anything: Unleashing the Power of Large-Scale Unlabeled Data},
|
51 |
+
author={Yang, Lihe and Kang, Bingyi and Huang, Zilong and Xu, Xiaogang and Feng, Jiashi and Zhao, Hengshuang},
|
52 |
+
booktitle={CVPR},
|
53 |
+
year={2024}
|
54 |
+
}
|