You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thanks for the great work! Would you be interested in adding the necessary adjustments/configs to HuggingFace, so that the model can be loaded with the Auto functions from Huggingface transformers? Currently, https://huggingface.co/zongzhuofan/co-detr-vit-large-coco only provides a pth file.
from transformers import AutoImageProcessor, AutoModelForObjectDetection
image_processor = AutoImageProcessor.from_pretrained("zongzhuofan/co-detr-vit-large-coco")
model = AutoModelForObjectDetection.from_pretrained("zongzhuofan/co-detr-vit-large-coco")
Thanks for your suggestion. However, my focus is currently on other projects, and I don't have much time to develop new features for this project right now. Community PR is welcome.
Hey,
thanks for the great work! Would you be interested in adding the necessary adjustments/configs to HuggingFace, so that the model can be loaded with the
Auto
functions from Huggingfacetransformers
? Currently, https://huggingface.co/zongzhuofan/co-detr-vit-large-coco only provides a pth file.One example where this was done is "facebook/detr-resnet-50".
The text was updated successfully, but these errors were encountered: