File size: 459 Bytes
4436b5b
fca2fe7
4436b5b
fca2fe7
a14091f
fca2fe7
a14091f
8120568
4436b5b
a14091f
 
 
03cb6c9
4436b5b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio as gr
from transformers import pipeline

summarizer = pipeline("summarization", model="facebook/bart-large-cnn")
ner = pipeline("ner", aggregation_strategy="simple")

def make_summary(article, max_length=130, min_length=30, do_sample=False):
    return summarizer(article, max_length, min_length, do_sample)

def get_entities(article):
    return ner(article)

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