Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,37 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
pipeline_tag: image-classification
|
4 |
---
|
5 |
+
|
6 |
+
My CoreML ImageClassifier model was made using the [facial-emotion-expressions dataset](https://www.kaggle.com/datasets/samaneheslamifar/facial-emotion-expressions)
|
7 |
+
|
8 |
+
- **[Model Prediction]**
|
9 |
+
- **Input**:
|
10 |
+
- A Color Image (360 * 360)
|
11 |
+
- **Output**:
|
12 |
+
- Target Probability: Dictionary<String, Double>
|
13 |
+
- ```
|
14 |
+
[
|
15 |
+
"happy": 0.4855561791349634,
|
16 |
+
"surprise": 0.024084357400483238,
|
17 |
+
"neutral": 0.21888420462997776,
|
18 |
+
"sad": 0.19763450068444008,
|
19 |
+
"disgust": 0.00016288822139744888,
|
20 |
+
"fear": 0.022619370188337207,
|
21 |
+
"angry": 0.05105849974040094
|
22 |
+
]
|
23 |
+
```
|
24 |
+
|
25 |
+
- **[Made Using]**
|
26 |
+
- Apple's [**CreateML** ](https://developer.apple.com/documentation/createml/mlimageclassifier)
|
27 |
+
|
28 |
+
- **[Requirements]**
|
29 |
+
- macOS 14.0+
|
30 |
+
- iOS 17.0+
|
31 |
+
- tvOS 17.0+
|
32 |
+
|
33 |
+
- **[Sample Usage]**:
|
34 |
+
- [**GitHub**](https://github.com/c2p-cmd/FaceEmotionClassifierSwift/)
|
35 |
+
|
36 |
+
- **[Prediction Results]**
|
37 |
+

|