I want to run this model through api but i get this error:
Loaded as API: LINK 
ReadTimeout Traceback (most recent call last)
/usr/local/lib/python3.11/dist-packages/httpx/_transports/default.py in map_httpcore_exceptions()
100 try:
→ 101 yield
102 except Exception as exc:
23 frames
ReadTimeout: The read operation timed out
The above exception was the direct cause of the following exception:
ReadTimeout Traceback (most recent call last)
/usr/local/lib/python3.11/dist-packages/httpx/_transports/default.py in map_httpcore_exceptions()
116
117 message = str(exc)
→ 118 raise mapped_exc(message) from exc
119
120
ReadTimeout: The read operation timed out
with this code:
#!pip install gradio_client
from gradio_client import Client, file
client = Client(“szymanowiczs/splatter_image”)
result = client.predict(
input_image=file(‘https://raw.githubusercontent.com/gradio-app/gradio/main/test/test_files/bus.png’),
api_name=“/check_input_image”
)
print(result)
even with hugging face pro the browser demo is insanely slow aswell