File size: 532 Bytes
7714aaf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60fc3f2
7714aaf
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from transformers import AutoTokenizer, AutoModelForTokenClassification
from transformers.pipelines import pipeline
import gradio as gr
import os


masker = pipeline(
    task="token-classification",
    model="Isotonic/distilbert_finetuned_ai4privacy",
    device="cpu",
)

def ai4p_gradio(input):
    entities = masker(input)
    return {"text": input, "entities": entities}

demo = gr.Interface(
    fn=ai4p_gradio, 
    inputs=gr.Textbox(lines=10, label="Input"), 
    outputs=gr.HighlightedText(label="output"),
)
demo.launch()