File size: 518 Bytes
c282c18
 
4353aed
 
 
 
 
 
c282c18
4353aed
 
 
 
 
 
 
 
 
 
 
 
c282c18
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import gradio as gr

from flair.data import Sentence
from flair.models import SequenceTagger

# Load the model
model = SequenceTagger.load("qanastek/pos-french")

def greet(name):

    res = "Hello " + name + "!!"

    sentence = Sentence("George Washington est allé à Washington")

    # predict tags
    model.predict(sentence)

    # print predicted pos tags
    res = sentence.to_tagged_string()

    return res

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