File size: 262 Bytes
28b4c24
8cb193b
28b4c24
 
8cb193b
 
 
 
 
 
 
 
28b4c24
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr
import gradiohelper



def predict_protection_level(title):
    
    status = gradiohelper.predict_protection_level(title)
    
    return status

iface = gr.Interface(fn=predict_protection_level, inputs="text", outputs="text")
iface.launch()