jonathan-roos's picture
app.py
abf21b5
raw
history blame
No virus
272 Bytes
import gradio as gr
from detector import bat_detector
def find_bats(input_img):
bats = bat_detector(input_img)
return f"{bats}" + " bats found!"
iface = gr.Interface(
fn=find_bats,
inputs=gr.Image(shape=(640, 512)),
outputs='text'
)
iface.launch()