mrojasfallas/wonders-of-the-world-images
Viewer • Updated • 3.85k • 6
How to use mariamhsein16/WondersofWorld with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-classification", model="mariamhsein16/WondersofWorld")
pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("mariamhsein16/WondersofWorld", dtype="auto")Base model
microsoft/resnet-50