Spaces:
Sleeping
Sleeping
File size: 203 Bytes
82e8494 |
1 2 3 4 5 6 7 |
from clip import get_token_from_clip
from grounding import run_grounding
def detect(image):
token = get_token_from_clip(image)
predict_image = run_grounding(image,token)
return predict_image |