Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,29 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
pipeline_tag: image-classification
|
4 |
---
|
5 |
+
|
6 |
+
My first CoreML ImageClassifier model using the [pets dataset](https://huggingface.co/datasets/rokmr/pets)
|
7 |
+
|
8 |
+
- **[Model Prediction]**
|
9 |
+
- **Input**:
|
10 |
+
- A Color Image (360 * 360)
|
11 |
+
- **Output**:
|
12 |
+
- Target: String
|
13 |
+
- eg: "Cat"
|
14 |
+
- Target Probability: Dictionary<String, Double>
|
15 |
+
- ```json
|
16 |
+
{
|
17 |
+
"Cat" : 0.88,
|
18 |
+
"Rabbit" : 0.0,
|
19 |
+
"Dog" : 0.08
|
20 |
+
}
|
21 |
+
```
|
22 |
+
|
23 |
+
- **[Requirements]**
|
24 |
+
- macOS 14.0+
|
25 |
+
- iOS 17.0+
|
26 |
+
- tvOS 17.0+
|
27 |
+
|
28 |
+
- **[Prediction Results]**
|
29 |
+
![image/png](https://cdn-uploads.huggingface.co/production/uploads/656968f81d7c2ca7b7b112c8/cvRhux2-fPQ0Bp_SUpK7d.png)
|