metadata
language: en
tags:
- tensorflow
- image-classification
license: mit
datasets: []
pipeline_tag: image-classification
library_name: tensorflow
Wrist Undertone Classifier 🩵🩷💛
This TensorFlow model predicts whether a user's wrist undertone is Cool, Warm, or Neutral based on an uploaded image of their wrist.
🧠 Model Details
- Framework: TensorFlow (SavedModel format)
- Input: Wrist image (
.jpg,.png, etc.) - Output: One of three classes:
coolwarmneutral
🖼️ Example Usage (Python)
from huggingface_hub import InferenceClient
client = InferenceClient("https://huggingface.co/Empire72/ronaundertone-detector")
with open("my_wrist.jpg", "rb") as f:
result = client.post(
json=None,
data=f,
headers={"Content-Type": "image/jpeg"},
)
print(result.json())