Instructions to use microsoft/resnet-152 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use microsoft/resnet-152 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="microsoft/resnet-152") 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-152") model = AutoModelForImageClassification.from_pretrained("microsoft/resnet-152") - Inference
- Notebooks
- Google Colab
- Kaggle
Add TF weights
#1
by amyeroberts - opened
Model converted by the transformers' pt_to_tf CLI.
All converted model outputs and hidden layers were validated against its Pytorch counterpart. Maximum crossload output difference=1.123e-03; Maximum converted output difference=1.123e-03.
All crossload differences
logits: 2.480e-05
hidden_states[0]: 2.003e-05
hidden_states[1]: 1.278e-04
hidden_states[2]: 1.110e-03
hidden_states[3]: 1.123e-03
hidden_states[4]: 1.023e-04
amyeroberts changed pull request status to merged