Instructions to use PekingU/rtdetr_r18vd with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use PekingU/rtdetr_r18vd with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("object-detection", model="PekingU/rtdetr_r18vd")# Load model directly from transformers import AutoImageProcessor, AutoModelForObjectDetection processor = AutoImageProcessor.from_pretrained("PekingU/rtdetr_r18vd") model = AutoModelForObjectDetection.from_pretrained("PekingU/rtdetr_r18vd", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update freezing
#5
by Alanox - opened
- config.json +1 -0
config.json
CHANGED
|
@@ -34,6 +34,7 @@
|
|
| 34 |
4
|
| 35 |
]
|
| 36 |
},
|
|
|
|
| 37 |
"backbone_kwargs": null,
|
| 38 |
"batch_norm_eps": 1e-05,
|
| 39 |
"box_noise_scale": 1.0,
|
|
|
|
| 34 |
4
|
| 35 |
]
|
| 36 |
},
|
| 37 |
+
"freeze_backbone_batch_norms": false,
|
| 38 |
"backbone_kwargs": null,
|
| 39 |
"batch_norm_eps": 1e-05,
|
| 40 |
"box_noise_scale": 1.0,
|