LukeJacob2023 commited on
Commit
7edefa4
·
verified ·
1 Parent(s): aa0d499

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ class TranscriptionApp:
13
  """
14
  self.model_manager = ModelManager()
15
  self.default_device = "cuda" if torch.cuda.is_available() else "cpu"
16
- self.default_model = "Large-v3" if torch.cuda.is_available() else "Base"
17
  self.app = gr.Blocks()
18
  self.outputs = {}
19
  self.last_transcription_time = 0
 
13
  """
14
  self.model_manager = ModelManager()
15
  self.default_device = "cuda" if torch.cuda.is_available() else "cpu"
16
+ self.default_model = "Large-v3" if torch.cuda.is_available() else "Small"
17
  self.app = gr.Blocks()
18
  self.outputs = {}
19
  self.last_transcription_time = 0