Downloads · 30 days
0
Wolfvox/notedetection
notedetection is a machine learning model from Wolfvox. Use it for the machine learning task on the model card, and read the license before you ship it in a product.
This model accepts an image (base64-encoded) through the Hugging Face Inference API and returns the output of the .pt PyTorch model.
Downloads · 30 days
0
Access
Public
Updated Nov 26, 2025
Repo size
6.2 MB
Likes
0
Public
Click a slice to open those files.
.pt6.2 MB · 100%
From the Hugging Face model README
This model accepts an image (base64-encoded) through the Hugging Face Inference API
and returns the output of the .pt PyTorch model.
import base64, requests
with open("test.jpg", "rb") as f:
img = base64.b64encode(f.read()).decode()
url = "YOUR_ENDPOINT_URL"
headers = {"Authorization": "Bearer YOUR_HF_TOKEN"}
resp = requests.post(url, json={"image": img}, headers=headers)
print(resp.json())
---
license: mit
---