File size: 446 Bytes
f6f97d8
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import requests
import base64
import time


def vqa_call(question, image_path, api_url='https://hf.space/embed/OFA-Sys/OFA-vqa/+/api/predict/'):
    with open(image_path, "rb") as f:
        base64_data = base64.b64encode(f.read())
    base64_data_to_send = "data:image/{};base64,{}".format(image_path.split(".")[-1], str(base64_data)[2:-1])
    return requests.post(url=api_url, json={"data": [base64_data_to_send, question]}).json()['data'][0]