TIPSv2-DPT
Collection
Pure-Keras 3 (JAX/PyTorch/TF) TIPSv2-DPT depth + segmentation models converted from google/tipsv2-dpt • 4 items • Updated
How to use kerasformers/tipsv2-g14-dpt 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
How to use kerasformers/tipsv2-g14-dpt with Keras:
# Available backend options are: "jax", "torch", "tensorflow".
import os
os.environ["KERAS_BACKEND"] = "jax"
import keras
model = keras.saving.load_model("hf://kerasformers/tipsv2-g14-dpt")
Paper: TIPSv2 (arXiv:2604.12012)
TIPSv2-DPT stacks DPT (Dense Prediction Transformer) heads on the TIPSv2 vision backbone. This single checkpoint serves three task classes: monocular depth estimation and semantic segmentation, or both at once.
For more details on the model, please go to the upstream model card.
Pure-Keras 3 conversion of google/tipsv2-g14-dpt for kerasformers. One implementation runs unmodified on TensorFlow / Torch / JAX.
import os
os.environ["KERAS_BACKEND"] = "torch" # or "jax" / "tensorflow"
from PIL import Image
import numpy as np
import keras
from kerasformers.models.tipsv2_dpt import (
Tipsv2DptDensePredict, # depth + segmentation
Tipsv2DptDepthEstimation, # depth only
Tipsv2DptSemanticSegment, # segmentation only
Tipsv2DptImageProcessor,
)
# all three load from the SAME repo
model = Tipsv2DptDensePredict.from_weights("kerasformers/tipsv2-g14-dpt")
proc = Tipsv2DptImageProcessor(image_resolution=448)
image = Image.open("your_image.jpg").convert("RGB")
pixel_values = proc(np.array(image))["pixel_values"]
out = model(pixel_values)
depth = keras.ops.convert_to_numpy(out["predicted_depth"]) # (1, H', W')
seg = keras.ops.convert_to_numpy(out["segmentation_logits"]) # (1, H', W', num_labels)
# single-task variants (same weights, one output each)
depth_model = Tipsv2DptDepthEstimation.from_weights("kerasformers/tipsv2-g14-dpt")
seg_model = Tipsv2DptSemanticSegment.from_weights("kerasformers/tipsv2-g14-dpt")
Variants:
| Variant | Hub |
|---|---|
tipsv2-b14-dpt |
kerasformers/tipsv2-b14-dpt |
tipsv2-l14-dpt |
kerasformers/tipsv2-l14-dpt |
tipsv2-so400m14-dpt |
kerasformers/tipsv2-so400m14-dpt |
tipsv2-g14-dpt |
kerasformers/tipsv2-g14-dpt |
KERAS_BACKEND before importing Keras / kerasformers.[0, 1] (no mean/std normalization); input resolution is 448.Tipsv2DptDensePredict.from_weights("hf:google/tipsv2-g14-dpt").A huge thank you to the TIPSv2 authors (Google DeepMind) and the HF community.
License: Apache-2.0 (matches the upstream google/tipsv2-g14-dpt checkpoint).
Base model
google/tipsv2-g14-dpt