File size: 272 Bytes
77e9330
f3e9e57
77e9330
f3e9e57
 
abf21b5
f3e9e57
 
 
 
 
 
 
77e9330
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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()