shivambhosale commited on
Commit
d199a36
·
verified ·
1 Parent(s): 7808f33

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -1,6 +1,8 @@
1
  import gradio as gr
2
  from transformers import pipeline
3
 
 
 
4
  def summarize_article(article, model_name, max_length, temperature, top_k, top_p):
5
  summarizer = pipeline("summarization", model=model_name)
6
  top_k = int(round(top_k))
@@ -16,7 +18,7 @@ iface = gr.Interface(
16
  lines=10,
17
  value="William Shakespeare would have lived with his family in their house on Henley Street until he turned eighteen. When he was eighteen, Shakespeare married Anne Hathaway, who was twenty-six. It was a rushed marriage because Anne was already pregnant at the time of the ceremony. Together they had three children. Their first daughter, Susanna, was born six months after the wedding and was later followed by twins Hamnet and Judith. Hamnet died when he was just 11 years old."
18
  ),
19
- gr.Dropdown(["Falconsai/text_summarization", "Other Models..."], label="Select Model"),
20
  gr.Slider(minimum=10, maximum=200, value=100, label="Max-Length"),
21
  gr.Slider(minimum=0.1, maximum=2, value=0.7, label="Temperature"),
22
  gr.Slider(minimum=1, maximum=100, value=50, label="Top-k"),
 
1
  import gradio as gr
2
  from transformers import pipeline
3
 
4
+ model_names = ["Falconsai/text_summarization"]
5
+
6
  def summarize_article(article, model_name, max_length, temperature, top_k, top_p):
7
  summarizer = pipeline("summarization", model=model_name)
8
  top_k = int(round(top_k))
 
18
  lines=10,
19
  value="William Shakespeare would have lived with his family in their house on Henley Street until he turned eighteen. When he was eighteen, Shakespeare married Anne Hathaway, who was twenty-six. It was a rushed marriage because Anne was already pregnant at the time of the ceremony. Together they had three children. Their first daughter, Susanna, was born six months after the wedding and was later followed by twins Hamnet and Judith. Hamnet died when he was just 11 years old."
20
  ),
21
+ gr.Dropdown(model_names, value=model_names[0], label="Select Model"),
22
  gr.Slider(minimum=10, maximum=200, value=100, label="Max-Length"),
23
  gr.Slider(minimum=0.1, maximum=2, value=0.7, label="Temperature"),
24
  gr.Slider(minimum=1, maximum=100, value=50, label="Top-k"),