Depth Estimation
Transformers
Safetensors
PyTorch
English
depth_anything
computer-vision
absolute depth
Instructions to use Boxiang/depth_chm with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Boxiang/depth_chm with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("depth-estimation", model="Boxiang/depth_chm")# Load model directly from transformers import AutoImageProcessor, AutoModelForDepthEstimation processor = AutoImageProcessor.from_pretrained("Boxiang/depth_chm") model = AutoModelForDepthEstimation.from_pretrained("Boxiang/depth_chm") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,4 +5,5 @@ base_model:
|
|
| 5 |
- depth-anything/Depth-Anything-V2-Base
|
| 6 |
- depth-anything/Depth-Anything-V2-Small
|
| 7 |
pipeline_tag: depth-estimation
|
|
|
|
| 8 |
---
|
|
|
|
| 5 |
- depth-anything/Depth-Anything-V2-Base
|
| 6 |
- depth-anything/Depth-Anything-V2-Small
|
| 7 |
pipeline_tag: depth-estimation
|
| 8 |
+
library_name: transformers
|
| 9 |
---
|