File size: 254 Bytes
ae4ea47
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr
import classla
classla.download('hr')
nlp = classla.Pipeline('hr')
def greet(name):
    doc = nlp(name)
    #print(doc.to_conll())
    return doc.to_conll()

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