pcuenq HF staff commited on
Commit
42c8974
1 Parent(s): 7086177

Add README

Browse files
Files changed (2) hide show
  1. ImageClassification1_2x.png +0 -0
  2. README.md +29 -0
ImageClassification1_2x.png ADDED
README.md ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - image-classification
4
+ library_name: coreml
5
+ license: mit
6
+ ---
7
+
8
+ # ResNet: Deep Residual Learning for Image Recognition
9
+
10
+ ![Image Classification Task](ImageClassification1_2x.png)
11
+
12
+ ResNet introduced the concept of residual blocks and is one of the most preferred architectures for feature extraction, image classification, object detection, segmentation, and other tasks. The Core ML models in this repository correspond to the ResNet-50 variant for image classification.
13
+
14
+ ## Models
15
+
16
+ - [Resnet50](Resnet50.mlmodel): Full precision (32 bit) model weights.
17
+ - [Resnet50FP16](Resnet50FP16.mlmodel): Half precision (16 bit) model weights.
18
+ - [Resnet50Int8LUT](Resnet50Int8LUT.mlmodel): Model optimized using 8-bit quantization with KMeans.
19
+ - [Resnet50Headless](Resnet50Headless.mlmodel): Use as a custom image classifier base model with Create ML.
20
+
21
+ ## Sample Code
22
+
23
+ - [Classifying Images with Vision and Core ML](
24
+ https://developer.apple.com/documentation/vision/classifying_images_with_vision_and_core_ml)
25
+
26
+ ## Resources
27
+
28
+ - [Original source](https://github.com/fchollet/deep-learning-models/blob/master/resnet50.py)
29
+ - [Deep Residual Learning for Image Recognition](https://arxiv.org/abs/1512.03385)