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:
    • cool
    • warm
    • neutral

πŸ–ΌοΈ 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
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support