Instructions to use facebook/detr-resnet-101-panoptic with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use facebook/detr-resnet-101-panoptic with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-segmentation", model="facebook/detr-resnet-101-panoptic")# Load model directly from transformers import AutoImageProcessor, AutoModelForImageSegmentation processor = AutoImageProcessor.from_pretrained("facebook/detr-resnet-101-panoptic") model = AutoModelForImageSegmentation.from_pretrained("facebook/detr-resnet-101-panoptic") - Notebooks
- Google Colab
- Kaggle
How to post processing for inference time
❤️ 1
3
#1 opened almost 4 years ago
by
hungtooc