Torch Scripts

VitMatte

The demo files are here

import torch
from torchvision.transforms import functional as F

image = Image.open("./retriever_rgb.png").convert("RGB")
image = F.to_tensor(image).unsqueeze(0).to("cuda").half()

trimap = Image.open("./retriever_trimap.png").convert("L")
trimap = F.to_tensor(trimap).unsqueeze(0).to("cuda").half()

input = {"image": image, "trimap": trimap}

model = torch.jit.load("./vitmatte_b_dis.pt").to("cuda")
alpha = model(input)

output = F.to_pil_image(predictions)
output.save("./predicted.png")

This is the output:

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model is not currently available via any of the supported Inference Providers.
The model cannot be deployed to the HF Inference API: The model has no library tag.