Spaces:
Sleeping
Sleeping
Lautaro Cardarelli
commited on
Commit
·
ca190b4
1
Parent(s):
2c6b1df
initial commit with gradio
Browse files
app.py
CHANGED
@@ -1,7 +1,22 @@
|
|
1 |
import gradio as gr
|
|
|
|
|
2 |
|
3 |
-
|
4 |
-
|
5 |
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
+
from transformers import BartForConditionalGeneration
|
3 |
+
from transformers import BartTokenizer
|
4 |
|
5 |
+
tokenizer = BartTokenizer.from_pretrained('facebook/bart-large-cnn')
|
6 |
+
model = BartForConditionalGeneration.from_pretrained('facebook/bart-large-cnn')
|
7 |
|
8 |
+
|
9 |
+
def generate_summary(text, model, tokenizer):
|
10 |
+
inputs = tokenizer.encode("summarize: " + text, return_tensors="pt", max_length=1024, truncation=True)
|
11 |
+
summary_ids = model.generate(inputs, max_length=150, min_length=50, length_penalty=2.0, num_beams=4, early_stopping=True)
|
12 |
+
summary = tokenizer.decode(summary_ids[0], skip_special_tokens=True)
|
13 |
+
return summary
|
14 |
+
|
15 |
+
|
16 |
+
def process(text):
|
17 |
+
return generate_summary(text, model, tokenizer)
|
18 |
+
|
19 |
+
|
20 |
+
textbox = gr.Textbox(label="Pega el text aca:", placeholder="Texto...", lines=15)
|
21 |
+
demo = gr.Interface(fn=process, inputs=textbox, outputs="text")
|
22 |
demo.launch()
|