BatuhanYilmaz commited on
Commit
0a8bf2e
β€’
1 Parent(s): 4c86298

Update 01_πŸŽ₯_Input_YouTube_Link.py

Browse files
Files changed (1) hide show
  1. 01_πŸŽ₯_Input_YouTube_Link.py +1 -1
01_πŸŽ₯_Input_YouTube_Link.py CHANGED
@@ -126,7 +126,7 @@ def generate_subtitled_video(video, audio, transcript):
126
 
127
 
128
  def main():
129
- size = st.selectbox("Select Model Size (The larger the model, the more accurate the transcription will be, but it will take longer)", ["tiny", "base", "small", "medium", "large"], index=1)
130
  loaded_model = change_model(current_size, size)
131
  st.write(f"Model is {'multilingual' if loaded_model.is_multilingual else 'English-only'} "
132
  f"and has {sum(np.prod(p.shape) for p in loaded_model.parameters()):,} parameters.")
 
126
 
127
 
128
  def main():
129
+ size = st.selectbox("Select Model Size (The larger the model, the more accurate the transcription will be, but it will take longer)", ["tiny", "base", "small", "medium", "large-v3"], index=1)
130
  loaded_model = change_model(current_size, size)
131
  st.write(f"Model is {'multilingual' if loaded_model.is_multilingual else 'English-only'} "
132
  f"and has {sum(np.prod(p.shape) for p in loaded_model.parameters()):,} parameters.")