Salvatore7262 commited on
Commit
a813e7d
·
verified ·
1 Parent(s): 1385f13

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +55 -39
README.md CHANGED
@@ -1,39 +1,55 @@
1
- ---
2
- language: en
3
- tags:
4
- - tensorflow
5
- - image-classification
6
- license: mit
7
- datasets: []
8
- pipeline_tag: image-classification
9
- library_name: tensorflow
10
- ---
11
-
12
- # Wrist Undertone Classifier 🩵🩷💛
13
-
14
- This TensorFlow model predicts whether a user's wrist undertone is **Cool**, **Warm**, or **Neutral** based on an uploaded image of their wrist.
15
-
16
- ## 🧠 Model Details
17
-
18
- - Framework: TensorFlow (SavedModel format)
19
- - Input: Wrist image (`.jpg`, `.png`, etc.)
20
- - Output: One of three classes:
21
- - `cool`
22
- - `warm`
23
- - `neutral`
24
-
25
- ## 🖼️ Example Usage (Python)
26
-
27
- ```python
28
- from huggingface_hub import InferenceClient
29
-
30
- client = InferenceClient("https://huggingface.co/Salvatore7262/ronaundertone-detector")
31
-
32
- with open("my_wrist.jpg", "rb") as f:
33
- result = client.post(
34
- json=None,
35
- data=f,
36
- headers={"Content-Type": "image/jpeg"},
37
- )
38
-
39
- print(result.json())
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ tags:
4
+ - tensorflow
5
+ - image-classification
6
+ - undertone
7
+ - skin-tone
8
+ - beauty-tech
9
+ license: mit
10
+ datasets: []
11
+ pipeline_tag: image-classification
12
+ library_name: tensorflow
13
+ ---
14
+
15
+ # 🩵 Wrist Undertone Classifier 🩷💛
16
+ > Determine your skin undertone (Cool, Warm, or Neutral) using a wrist photo!
17
+
18
+ ---
19
+
20
+ ## 🧠 Overview
21
+
22
+ This TensorFlow model predicts whether a user's wrist undertone is **Cool**, **Warm**, or **Neutral** based on an uploaded image of their wrist.
23
+ It is designed for use in beauty, skincare, and fashion applications — helping users find colors that best match their natural undertone.
24
+
25
+ ---
26
+
27
+ ## ⚙️ Model Details
28
+
29
+ | Property | Description |
30
+ |-----------|--------------|
31
+ | **Framework** | TensorFlow (SavedModel format) |
32
+ | **Input** | Wrist image (`.jpg`, `.jpeg`, `.png`) |
33
+ | **Output** | One of three classes: `cool`, `warm`, or `neutral` |
34
+ | **License** | MIT |
35
+ | **Language** | English |
36
+
37
+ ---
38
+
39
+ ## 🧩 Example Inference (Python)
40
+
41
+ You can use the [🤗 `huggingface_hub`](https://pypi.org/project/huggingface-hub/) client to test this model programmatically.
42
+
43
+ ```python
44
+ from huggingface_hub import InferenceClient
45
+
46
+ client = InferenceClient("https://api-inference.huggingface.co/models/Salvatore7262/ronaundertone-detector")
47
+
48
+ with open("my_wrist.jpg", "rb") as f:
49
+ result = client.post(
50
+ json=None,
51
+ data=f,
52
+ headers={"Content-Type": "image/jpeg"},
53
+ )
54
+
55
+ print(result.json())