c2p-cmd commited on
Commit
ffda578
·
verified ·
1 Parent(s): d42b9e6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -0
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** ![image/png](https://developer.apple.com/assets/elements/icons/create-ml/create-ml-96x96_2x.png)](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
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/656968f81d7c2ca7b7b112c8/DV4QbAVZLLEUASJhxOq7U.png)