prashantsv commited on
Commit
dba8578
·
verified ·
1 Parent(s): 368c8d0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -15
app.py CHANGED
@@ -7,11 +7,6 @@ import gradio as gr
7
  from transformers import pipeline
8
 
9
  text_summary = pipeline("summarization", model="sshleifer/distilbart-cnn-6-6")
10
- # model_path = ("../Models/models--sshleifer--distilbart-cnn-6-6/snapshots/d2fde4ca965ba893255479612e4b801aa6500029")
11
-
12
- # text_summary = pipeline("summarization", model=model_path,
13
- # torch_dtype=torch.bfloat16)
14
-
15
 
16
  def split_text_to_chunks(text, chunk_size=1024):
17
  return [text[i:i+chunk_size] for i in range(0, len(text), chunk_size)]
@@ -43,17 +38,10 @@ def get_transcript(video_url):
43
  except Exception as e:
44
  return f"Error fetching transcript: {e}"
45
 
46
- # youtube_url = input("Enter YouTube URL: ")
47
- # transcript = get_transcript(youtube_url)
48
- # output = summary(transcript)
49
- # print("\n--- Video Transcript ---\n")
50
- # print(output)
51
-
52
  gr.close_all()
53
- # demo = gr.Interface(fn=summary,inputs="text", outputs="text")
54
  demo = gr.Interface(fn=get_transcript,
55
- inputs=[gr.Textbox(label="Input text to summarize", lines=1)],
56
  outputs=[gr.Textbox(label="Summarized text", lines=4)],
57
- title="Text Summarizer",
58
- description="This application will be used to summarise the text")
59
  demo.launch()
 
7
  from transformers import pipeline
8
 
9
  text_summary = pipeline("summarization", model="sshleifer/distilbart-cnn-6-6")
 
 
 
 
 
10
 
11
  def split_text_to_chunks(text, chunk_size=1024):
12
  return [text[i:i+chunk_size] for i in range(0, len(text), chunk_size)]
 
38
  except Exception as e:
39
  return f"Error fetching transcript: {e}"
40
 
 
 
 
 
 
 
41
  gr.close_all()
 
42
  demo = gr.Interface(fn=get_transcript,
43
+ inputs=[gr.Textbox(label="Input Youtube URL to summarize the video", lines=1)],
44
  outputs=[gr.Textbox(label="Summarized text", lines=4)],
45
+ title="Youtube Summarizer",
46
+ description="This application will be used to summarise the youtube video")
47
  demo.launch()