Sibinraj commited on
Commit
19f98a0
·
verified ·
1 Parent(s): b81313d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -67
app.py CHANGED
@@ -1,41 +1,14 @@
1
  import torch
2
  import gradio as gr
 
3
  from transformers import T5ForConditionalGeneration, T5Tokenizer
4
- import fitz # PyMuPDF for extracting text from PDF
5
 
6
- # Load the model and tokenizer
7
  model_path = 'Sibinraj/T5-finetuned-dialogue_sumxx'
8
  model = T5ForConditionalGeneration.from_pretrained(model_path)
9
  tokenizer = T5Tokenizer.from_pretrained(model_path)
10
 
11
- def extract_text_from_pdf(pdf_path):
12
- """
13
- Extracts text from a given PDF file.
14
-
15
- Args:
16
- pdf_path (str): Path to the PDF file.
17
-
18
- Returns:
19
- str: Extracted text from the PDF.
20
- """
21
- text = ""
22
- with fitz.open(pdf_path) as doc:
23
- for page in doc:
24
- text += page.get_text()
25
- return text
26
-
27
  def summarize_text(text, max_length, show_length):
28
- """
29
- Summarizes the given text using a T5 model.
30
-
31
- Args:
32
- text (str): The text to summarize.
33
- max_length (int): The maximum length of the summary.
34
- show_length (bool): Whether to show the length of the summary.
35
-
36
- Returns:
37
- str: The summarized text.
38
- """
39
  inputs = tokenizer.encode(
40
  "summarize: " + text,
41
  return_tensors='pt',
@@ -44,6 +17,7 @@ def summarize_text(text, max_length, show_length):
44
  padding='max_length'
45
  )
46
 
 
47
  summary_ids = model.generate(
48
  inputs,
49
  max_length=max_length + 20, # Allow some buffer
@@ -53,8 +27,10 @@ def summarize_text(text, max_length, show_length):
53
  early_stopping=True
54
  )
55
 
 
56
  summary = tokenizer.decode(summary_ids[0], skip_special_tokens=True)
57
 
 
58
  summary_words = summary.split()
59
  if len(summary_words) > max_length:
60
  summary = ' '.join(summary_words[:max_length])
@@ -70,54 +46,26 @@ def summarize_text(text, max_length, show_length):
70
  additional_summary = tokenizer.decode(additional_tokens[0], skip_special_tokens=True)
71
  summary += ' ' + ' '.join(additional_summary.split()[len(summary_words):max_length])
72
 
 
73
  if show_length:
74
  summary_length = len(summary.split())
75
  summary = f"{summary}\n\n(Summary length: {summary_length} words)"
76
 
77
  return summary
78
 
79
- def handle_input(input_type, text, pdf, max_length, show_length):
80
- """
81
- Handles the user input based on the selected input type.
82
-
83
- Args:
84
- input_type (str): The type of input (text or PDF).
85
- text (str): The text input.
86
- pdf (UploadedFile): The uploaded PDF file.
87
- max_length (int): The maximum length of the summary.
88
- show_length (bool): Whether to show the length of the summary.
89
-
90
- Returns:
91
- str: The summarized text.
92
- """
93
- if input_type == 'Text':
94
- return summarize_text(text, max_length, show_length)
95
- elif input_type == 'PDF':
96
- extracted_text = extract_text_from_pdf(pdf.name)
97
- return summarize_text(extracted_text, max_length, show_length)
98
-
99
-
100
- # Define examples for text input
101
- examples_text = [
102
- ['Text', 'The tower is 324 metres (1,063 ft) tall, about the same height as an 81-storey building, and the tallest structure in Paris. Its base is square, measuring 125 metres (410 ft) on each side. During its construction, the Eiffel Tower surpassed the Washington Monument to become the tallest man-made structure in the world, a title it held for 41 years until the Chrysler Building in New York City was finished in 1930. It was the first structure to reach a height of 300 metres. Due to the addition of a broadcasting aerial at the top of the tower in 1957, it is now taller than the Chrysler Building by 5.2 metres (17 ft). Excluding transmitters, the Eiffel Tower is the second tallest free-standing structure in France after the Millau Viaduct.', None, 50, False],
103
- ['Text', '#Person1#: Is this the workshop to prepare for an interview? #Person2#: This is the interview class. Welcome to our class. #Person1#: I am really excited to be taking this workshop so that I can get ready for my interview next week. #Person2#: We are all learning things that will help us in our interview. What do you think are some important considerations going into your interview? #Person1#: I think that we should dress neatly and appropriately. #Person2#: Yes. Second, as you can imagine, attitude and friendliness go a long way. #Person1#: Yes, and I always feel much better when I am friendly. #Person2#: Believe it or not, the interviewers are as interested in your questions as they are in your answers. #Person1#: Any more hints as to what I should do in an interview? #Person2#: Always be honest with your answers. The interviewers really do want to know if you will be a good fit for them.', None, 50, False]
104
- ]
105
-
106
- # Define the Gradio interface
107
  interface = gr.Interface(
108
- fn=handle_input,
109
  inputs=[
110
- gr.Radio(['Text', 'PDF'], label='Input Type', type='value'),
111
- gr.Textbox(lines=10, placeholder='Enter Text Here...', label='Input Text', visible=True),
112
- gr.File(label='Upload PDF', type='filepath', visible=True),
113
  gr.Slider(minimum=10, maximum=150, step=1, label='Max Length'),
114
- gr.Checkbox(label='Show summary length', value=False)
115
  ],
116
  outputs=gr.Textbox(label='Summarized Text'),
117
- title='Text or PDF Summarizer using T5-finetuned-dialogue_sumxx',
118
- examples=examples_text
119
-
 
 
120
  )
121
 
122
- # Launch the Gradio interface
123
- interface.launch()
 
1
  import torch
2
  import gradio as gr
3
+ from transformers import pipeline
4
  from transformers import T5ForConditionalGeneration, T5Tokenizer
 
5
 
 
6
  model_path = 'Sibinraj/T5-finetuned-dialogue_sumxx'
7
  model = T5ForConditionalGeneration.from_pretrained(model_path)
8
  tokenizer = T5Tokenizer.from_pretrained(model_path)
9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  def summarize_text(text, max_length, show_length):
11
+ # Preprocess the text
 
 
 
 
 
 
 
 
 
 
12
  inputs = tokenizer.encode(
13
  "summarize: " + text,
14
  return_tensors='pt',
 
17
  padding='max_length'
18
  )
19
 
20
+ # Generate the summary
21
  summary_ids = model.generate(
22
  inputs,
23
  max_length=max_length + 20, # Allow some buffer
 
27
  early_stopping=True
28
  )
29
 
30
+ # Decode the summary
31
  summary = tokenizer.decode(summary_ids[0], skip_special_tokens=True)
32
 
33
+ # Trim the summary to the desired length
34
  summary_words = summary.split()
35
  if len(summary_words) > max_length:
36
  summary = ' '.join(summary_words[:max_length])
 
46
  additional_summary = tokenizer.decode(additional_tokens[0], skip_special_tokens=True)
47
  summary += ' ' + ' '.join(additional_summary.split()[len(summary_words):max_length])
48
 
49
+ # If show_length is True, append the length of the summary
50
  if show_length:
51
  summary_length = len(summary.split())
52
  summary = f"{summary}\n\n(Summary length: {summary_length} words)"
53
 
54
  return summary
55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  interface = gr.Interface(
57
+ fn=summarize_text,
58
  inputs=[
59
+ gr.Textbox(lines=10, placeholder='Enter Text Here...', label='Input text'),
 
 
60
  gr.Slider(minimum=10, maximum=150, step=1, label='Max Length'),
61
+ gr.Checkbox(label='Show summary length')
62
  ],
63
  outputs=gr.Textbox(label='Summarized Text'),
64
+ title='Text Summarizer using T5-finetuned-dialogue_sumxx',
65
+ examples=[
66
+ ['The tower is 324 metres (1,063 ft) tall, about the same height as an 81-storey building, and the tallest structure in Paris. Its base is square, measuring 125 metres (410 ft) on each side. During its construction, the Eiffel Tower surpassed the Washington Monument to become the tallest man-made structure in the world, a title it held for 41 years until the Chrysler Building in New York City was finished in 1930. It was the first structure to reach a height of 300 metres. Due to the addition of a broadcasting aerial at the top of the tower in 1957, it is now taller than the Chrysler Building by 5.2 metres (17 ft). Excluding transmitters, the Eiffel Tower is the second tallest free-standing structure in France after the Millau Viaduct.', 50, 50],
67
+ ['#Person1#: Is this the workshop to prepare for an interview? #Person2#: This is the interview class. Welcome to our class. #Person1#: I am really excited to be taking this workshop so that I can get ready for my interview next week. #Person2#: We are all learning things that will help us in our interview. What do you think are some important considerations going into your interview? #Person1#: I think that we should dress neatly and appropriately. #Person2#: Yes. Second, as you can imagine, attitude and friendliness go a long way. #Person1#: Yes, and I always feel much better when I am friendly. #Person2#: Believe it or not, the interviewers are as interested in your questions as they are in your answers. #Person1#: Any more hints as to what I should do in an interview? #Person2#: Always be honest with your answers. The interviewers really do want to know if you will be a good fit for them.', 50, 50]
68
+ ]
69
  )
70
 
71
+ interface.launch()