smaciu commited on
Commit
670998d
·
1 Parent(s): 331086d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md CHANGED
@@ -3,6 +3,27 @@ tags:
3
  - fastai
4
  ---
5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  from huggingface_hub import from_pretrained_fastai
7
  from fastai.vision.all import *
8
  def label_func(f): return f.name[:2]
 
3
  - fastai
4
  ---
5
 
6
+ # ResNet
7
+
8
+ ResNet model trained on imagenet-1k. It was introduced in the paper [Deep Residual Learning for Image Recognition](https://arxiv.org/abs/1512.03385) and first released in [this repository](https://github.com/KaimingHe/deep-residual-networks).
9
+
10
+ Disclaimer: The team releasing ResNet did not write a model card for this model so this model card has been written by the Hugging Face team.
11
+
12
+ ## Model description
13
+
14
+ ResNet introduced residual connections, they allow to train networks with an unseen number of layers (up to 1000). ResNet won the 2015 ILSVRC & COCO competition, one important milestone in deep computer vision.
15
+
16
+ ![model image](https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/resnet_architecture.png)
17
+
18
+ ## Intended uses & limitations
19
+
20
+ You can use the raw model for image classification. See the [model hub](https://huggingface.co/models?search=resnet) to look for
21
+ fine-tuned versions on a task that interests you.
22
+
23
+ ### How to use
24
+
25
+
26
+
27
  from huggingface_hub import from_pretrained_fastai
28
  from fastai.vision.all import *
29
  def label_func(f): return f.name[:2]