Instructions to use ustc-community/dfine-medium-obj365 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ustc-community/dfine-medium-obj365 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("object-detection", model="ustc-community/dfine-medium-obj365")# Load model directly from transformers import AutoTokenizer, AutoModelForObjectDetection tokenizer = AutoTokenizer.from_pretrained("ustc-community/dfine-medium-obj365") model = AutoModelForObjectDetection.from_pretrained("ustc-community/dfine-medium-obj365", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -23,7 +23,9 @@ This model was contributed by [VladOS95-cyber](https://github.com/VladOS95-cyber
|
|
| 23 |
This is the HF transformers implementation for D-FINE
|
| 24 |
|
| 25 |
_coco -> model trained on COCO
|
|
|
|
| 26 |
_obj365 -> model trained on Object365
|
|
|
|
| 27 |
_obj2coco -> model trained on Object365 and then finetuned on COCO
|
| 28 |
|
| 29 |
### **Performance**
|
|
|
|
| 23 |
This is the HF transformers implementation for D-FINE
|
| 24 |
|
| 25 |
_coco -> model trained on COCO
|
| 26 |
+
|
| 27 |
_obj365 -> model trained on Object365
|
| 28 |
+
|
| 29 |
_obj2coco -> model trained on Object365 and then finetuned on COCO
|
| 30 |
|
| 31 |
### **Performance**
|