Instructions to use microsoft/resnet-34 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use microsoft/resnet-34 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="microsoft/resnet-34") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoImageProcessor, AutoModelForImageClassification processor = AutoImageProcessor.from_pretrained("microsoft/resnet-34") model = AutoModelForImageClassification.from_pretrained("microsoft/resnet-34") - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -7,7 +7,7 @@ datasets:
|
|
| 7 |
- imagenet-1k
|
| 8 |
---
|
| 9 |
|
| 10 |
-
# ResNet-
|
| 11 |
|
| 12 |
ResNet model pre-trained on ImageNet-1k at resolution 224x224. It was introduced in the paper [Deep Residual Learning for Image Recognition](https://arxiv.org/abs/1512.03385) by He et al.
|
| 13 |
|
|
|
|
| 7 |
- imagenet-1k
|
| 8 |
---
|
| 9 |
|
| 10 |
+
# ResNet-34 v1.5
|
| 11 |
|
| 12 |
ResNet model pre-trained on ImageNet-1k at resolution 224x224. It was introduced in the paper [Deep Residual Learning for Image Recognition](https://arxiv.org/abs/1512.03385) by He et al.
|
| 13 |
|