PirateXX commited on
Commit
b31fbb8
·
verified ·
1 Parent(s): 4126884

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -5,8 +5,8 @@ import random
5
  import numpy as np
6
  import torch
7
  from transformers import T5ForConditionalGeneration,T5Tokenizer
8
- summary_model = T5ForConditionalGeneration.from_pretrained('t5-base')
9
- summary_tokenizer = T5Tokenizer.from_pretrained('t5-base')
10
 
11
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
12
  summary_model = summary_model.to(device)
@@ -33,7 +33,7 @@ def postprocesstext (content):
33
  final = final +" "+sent
34
  return final
35
 
36
- def summarizer(text,model,tokenizer):
37
  text = text.strip().replace("\n"," ")
38
  text = "summarize: "+text
39
  # print (text)
@@ -59,5 +59,7 @@ def summarizer(text,model,tokenizer):
59
 
60
  return summary
61
 
62
- demo = gr.Interface(fn=summarizer, inputs="text", outputs="text")
 
 
63
  demo.launch()
 
5
  import numpy as np
6
  import torch
7
  from transformers import T5ForConditionalGeneration,T5Tokenizer
8
+ model = T5ForConditionalGeneration.from_pretrained('t5-base')
9
+ tokenizer = T5Tokenizer.from_pretrained('t5-base')
10
 
11
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
12
  summary_model = summary_model.to(device)
 
33
  final = final +" "+sent
34
  return final
35
 
36
+ def summarizer(text):
37
  text = text.strip().replace("\n"," ")
38
  text = "summarize: "+text
39
  # print (text)
 
59
 
60
  return summary
61
 
62
+ demo = gr.Interface(fn=summarizer, inputs="text", outputs="text",
63
+ examples=["Cristiano Ronaldo is a Portuguese professional soccer player who currently plays as a forward for Manchester United and the Portugal national team. He is widely considered one of the greatest soccer players of all time, having won numerous awards and accolades throughout his career. Ronaldo began his professional career with Sporting CP in Portugal before moving to Manchester United in 2003. He spent six seasons with the club, winning three Premier League titles and one UEFA Champions League title. In 2009, he transferred to Real Madrid for a then-world record transfer fee of $131 million. He spent nine seasons with the club, winning four UEFA Champions League titles, two La Liga titles, and two Copa del Rey titles. In 2018, he transferred to Juventus, where he spent three seasons before returning to Manchester United in 2021. He has also had a successful international career with the Portugal national team, having won the UEFA European Championship in 2016 and the UEFA Nations League in 2019.", "One rule of thumb which applies to everything that we do - professionally and personally : Know what the customer want and deliver. In this case, it is important to know what the organisation what from employee. Connect the same to the KRA. Are you part of a delivery which directly ties to the larger organisational objective. If yes, then the next question is success rate of one’s delivery. If the KRAs are achieved or exceeded, then the employee is entitled for a decent hike."])
64
+ )
65
  demo.launch()