File size: 313 Bytes
0ecd8d3
 
 
 
cd337e5
74b8ab5
0ecd8d3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
tags:
- image-classification
- pytorch
datasets:
- imagenet
---

# Resnet50 Model from Torchvision

## Using the model

```
pip install modelz
```

```python
from modelz import ResnetModel

model = ResnetModel.from_pretrained('nateraw/resnet50')
ex_input = torch.rand(4, 3, 224, 224)
out = model(ex_input)
```