detection-datasets/fashionpedia
Viewer • Updated • 46.8k • 1.04k • 81
How to use agni1024/yolos-pocket with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("object-detection", model="agni1024/yolos-pocket") # Load model directly
from transformers import AutoImageProcessor, AutoModelForObjectDetection
processor = AutoImageProcessor.from_pretrained("agni1024/yolos-pocket")
model = AutoModelForObjectDetection.from_pretrained("agni1024/yolos-pocket")This is a fine-tunned object detection model for only detecting pocket.
this model supports the following categories:
CATS = ['pocket']