Walid-Ahmed commited on
Commit
1fae598
·
verified ·
1 Parent(s): 6ef27b9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -9,8 +9,15 @@ from transformers import pipeline
9
  whisper_model = whisper.load_model("tiny")
10
  model = whisper.load_model("base")
11
 
 
 
 
 
 
 
 
12
  # Load the text summarization model from Hugging Face
13
- summarizer = pipeline(task="summarization", model="facebook/bart-large-cnn")
14
 
15
  # Function to transcribe and summarize the audio file
16
  def transcribe_and_summarize(audio):
 
9
  whisper_model = whisper.load_model("tiny")
10
  model = whisper.load_model("base")
11
 
12
+ # Check if GPU is available and set device accordingly
13
+ device = 0 if torch.cuda.is_available() else -1
14
+ if device == 0:
15
+ print("Running on GPU")
16
+ else:
17
+ print("Running on CPU")
18
+
19
  # Load the text summarization model from Hugging Face
20
+ summarizer = pipeline(task="summarization", model="facebook/bart-large-cnn", device=device)
21
 
22
  # Function to transcribe and summarize the audio file
23
  def transcribe_and_summarize(audio):