amitkayal commited on
Commit
f4d06ec
1 Parent(s): ac7565c

added my own model

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -6,6 +6,7 @@ from transformers import pipeline
6
  from huggingface_hub import model_info
7
 
8
  MODEL_NAME = "openai/whisper-small" #this always needs to stay in line 8 :D sorry for the hackiness
 
9
  lang = "en"
10
 
11
  device = 0 if torch.cuda.is_available() else "cpu"
 
6
  from huggingface_hub import model_info
7
 
8
  MODEL_NAME = "openai/whisper-small" #this always needs to stay in line 8 :D sorry for the hackiness
9
+ MODEL_NAME = "amitkayal/whisper-tiny-hi"
10
  lang = "en"
11
 
12
  device = 0 if torch.cuda.is_available() else "cpu"