pierrelf commited on
Commit
d4e93ec
·
1 Parent(s): e236aca

Add GPU support and update server name

Browse files
Files changed (2) hide show
  1. .gitignore +1 -0
  2. app.py +13 -3
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ flagged
app.py CHANGED
@@ -1,8 +1,18 @@
1
  from transformers import pipeline
2
  import gradio as gr
 
3
 
4
- # pipe = pipeline(model="openai/whisper-small")
5
- pipe = pipeline(model="pierrelf/whisper-small-sv") # change to "your-username/the-name-you-picked"
 
 
 
 
 
 
 
 
 
6
 
7
  def transcribe(audio):
8
  text = pipe(audio)["text"]
@@ -16,4 +26,4 @@ iface = gr.Interface(
16
  description="Realtime demo for Swedish speech recognition using a fine-tuned Whisper small model.",
17
  )
18
 
19
- iface.launch()
 
1
  from transformers import pipeline
2
  import gradio as gr
3
+ import torch
4
 
5
+ def detect_gpu():
6
+ if not torch.cuda.is_available():
7
+ print("No GPU device found")
8
+ exit()
9
+
10
+ print(f"Found {torch.cuda.device_count()} GPU device(s)")
11
+ print(f"Using {torch.cuda.get_device_name(0)}")
12
+
13
+ detect_gpu()
14
+
15
+ pipe = pipeline(model="pierrelf/whisper-small-sv", device=0)
16
 
17
  def transcribe(audio):
18
  text = pipe(audio)["text"]
 
26
  description="Realtime demo for Swedish speech recognition using a fine-tuned Whisper small model.",
27
  )
28
 
29
+ iface.launch(server_name="0.0.0.0")