Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
# Depth Anything Core ML Models
|
| 6 |
+
|
| 7 |
+
See [the Files tab](https://huggingface.co/coreml-projects/depth-anything/tree/main) for converted models.
|
| 8 |
+
|
| 9 |
+
## Download
|
| 10 |
+
|
| 11 |
+
Install `huggingface-hub`
|
| 12 |
+
|
| 13 |
+
```bash
|
| 14 |
+
pip install huggingface-hub
|
| 15 |
+
```
|
| 16 |
+
|
| 17 |
+
To download one of the `.mlpackage` folders to the `models` directory:
|
| 18 |
+
|
| 19 |
+
```bash
|
| 20 |
+
huggingface-cli download \
|
| 21 |
+
--local-dir models --local-dir-use-symlinks False \
|
| 22 |
+
coreml-projects/depth-anything \
|
| 23 |
+
--include "depth-anything-base-float16.mlpackage/*"
|
| 24 |
+
```
|
| 25 |
+
|
| 26 |
+
To download everything, skip the `--include` argument.
|