Open willjhliang opened 3 months ago
Hello! I have the same issue and would like to learn the reason. I don't want that the model merges my classes and assign class x class y for one box, in this case there is no way to apply nms and choose the higher probability class for the related box since they come as one single label and it creates lower precision issue for my dataset. Thanks
Hello! I have the same issue and would like to learn the reason. I don't want that the model merges my classes and assign class x class y for one box, in this case there is no way to apply nms and choose the higher probability class for the related box since they come as one single label and it creates lower precision issue for my dataset. Thanks
this happens a lot . sometimes a class with a long name, may be cut off. for example, A: motorbike---> B:motor C:bike
Using the Huggingface API with
AutoProcessor
,AutoModelForZeroShotObjectDetection
, andpost_process_grounded_object_detection()
(following Grounded SAM 2), I receive some empty label strings in the results (results[0]["labels"]
) or strings that include 2 classes. My classes are specified asI have a few questions:
Thank you very much!