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())
- Downloads last month
- 1