Instructions to use glasses/resnet34d with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use glasses/resnet34d with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="glasses/resnet34d") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("glasses/resnet34d", dtype="auto") - Notebooks
- Google Colab
- Kaggle
commit files to HF hub
Browse files
README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
# resnet34d
|
| 9 |
Implementation of ResNet proposed in [Deep Residual Learning for Image
|
| 10 |
Recognition](https://arxiv.org/abs/1512.03385)
|
|
|
|
| 1 |
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
tags:
|
| 4 |
+
- image-classification
|
| 5 |
+
datasets:
|
| 6 |
+
- imagenet
|
| 7 |
+
---
|
| 8 |
# resnet34d
|
| 9 |
Implementation of ResNet proposed in [Deep Residual Learning for Image
|
| 10 |
Recognition](https://arxiv.org/abs/1512.03385)
|