Instructions to use Blueway/inference-endpoint-for-omdet-turbo-swin-tiny-hf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Blueway/inference-endpoint-for-omdet-turbo-swin-tiny-hf with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("zero-shot-object-detection", model="Blueway/inference-endpoint-for-omdet-turbo-swin-tiny-hf")# Load model directly from transformers import AutoProcessor, AutoModelForZeroShotObjectDetection processor = AutoProcessor.from_pretrained("Blueway/inference-endpoint-for-omdet-turbo-swin-tiny-hf") model = AutoModelForZeroShotObjectDetection.from_pretrained("Blueway/inference-endpoint-for-omdet-turbo-swin-tiny-hf") - Notebooks
- Google Colab
- Kaggle