PotholeDetect / predict.py
TashiKP's picture
Update predict.py
4cf2af4 verified
raw
history blame
268 Bytes
from gradio_client import Client, handle_file
client = Client("TashiKP/PotholeDetect")
result = client.predict(
video={"video":handle_file('https://github.com/gradio-app/gradio/raw/main/demo/video_component/files/world.mp4')},
api_name="/predict"
)
print(result)