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
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,4 +5,6 @@ language:
|
|
| 5 |
- en
|
| 6 |
pipeline_tag: zero-shot-object-detection
|
| 7 |
library_name: transformers
|
| 8 |
-
---
|
|
|
|
|
|
|
|
|
| 5 |
- en
|
| 6 |
pipeline_tag: zero-shot-object-detection
|
| 7 |
library_name: transformers
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Fork of [omlab/omdet-turbo-swin-tiny-hf](https://huggingface.co/omlab/omdet-turbo-swin-tiny-hf) for a `zero-shot-object-detection` Inference endpoint.
|