Instructions to use zeromodels/depth_anything_small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- KerasFormers
How to use zeromodels/depth_anything_small with KerasFormers:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Keras
How to use zeromodels/depth_anything_small with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://zeromodels/depth_anything_small") - Notebooks
- Google Colab
- Kaggle
fix readme.md
Browse files
README.md
CHANGED
|
@@ -24,7 +24,8 @@ tags:
|
|
| 24 |
|
| 25 |
Paper: [Depth Anything: Unleashing the Power of Large-Scale Unlabeled Data (arXiv:2401.10891)](https://arxiv.org/abs/2401.10891) 路 [HF Papers](https://huggingface.co/papers/2401.10891)
|
| 26 |
|
| 27 |
-
Depth Anything estimates depth from a single image. A DINOv2 ViT backbone feeds a DPT-style neck and head. V1 outputs relative inverse depth (larger means closer; units are arbitrary within one image).
|
|
|
|
| 28 |
For more details on the model, please go to the upstream [model card](https://huggingface.co/LiheYoung/depth-anything-small-hf).
|
| 29 |
|
| 30 |
Pure-**Keras 3** conversion of [`LiheYoung/depth-anything-small-hf`](https://huggingface.co/LiheYoung/depth-anything-small-hf) for [kerasformers](https://github.com/IMvision12/KerasFormers). One implementation runs unmodified on **TensorFlow / Torch / JAX**.
|
|
@@ -38,10 +39,10 @@ import os
|
|
| 38 |
os.environ["KERAS_BACKEND"] = "torch" # or "jax" / "tensorflow"
|
| 39 |
|
| 40 |
from PIL import Image
|
| 41 |
-
from
|
| 42 |
|
| 43 |
-
model =
|
| 44 |
-
processor =
|
| 45 |
|
| 46 |
image = Image.open("your_image.jpg").convert("RGB")
|
| 47 |
output = model(processor(image)["pixel_values"], training=False)
|
|
|
|
| 24 |
|
| 25 |
Paper: [Depth Anything: Unleashing the Power of Large-Scale Unlabeled Data (arXiv:2401.10891)](https://arxiv.org/abs/2401.10891) 路 [HF Papers](https://huggingface.co/papers/2401.10891)
|
| 26 |
|
| 27 |
+
Depth Anything estimates depth from a single image. A DINOv2 ViT backbone feeds a DPT-style neck and head. V1 outputs relative inverse depth (larger means closer; units are arbitrary within one image).
|
| 28 |
+
|
| 29 |
For more details on the model, please go to the upstream [model card](https://huggingface.co/LiheYoung/depth-anything-small-hf).
|
| 30 |
|
| 31 |
Pure-**Keras 3** conversion of [`LiheYoung/depth-anything-small-hf`](https://huggingface.co/LiheYoung/depth-anything-small-hf) for [kerasformers](https://github.com/IMvision12/KerasFormers). One implementation runs unmodified on **TensorFlow / Torch / JAX**.
|
|
|
|
| 39 |
os.environ["KERAS_BACKEND"] = "torch" # or "jax" / "tensorflow"
|
| 40 |
|
| 41 |
from PIL import Image
|
| 42 |
+
from kerasformers.models.depth_anything_v1 import DepthAnythingV1DepthEstimation, DepthAnythingV1ImageProcessor
|
| 43 |
|
| 44 |
+
model = DepthAnythingV1DepthEstimation.from_weights("kerasformers/depth_anything_small")
|
| 45 |
+
processor = DepthAnythingV1ImageProcessor()
|
| 46 |
|
| 47 |
image = Image.open("your_image.jpg").convert("RGB")
|
| 48 |
output = model(processor(image)["pixel_values"], training=False)
|