BatuhanYilmaz
commited on
Commit
β’
0a8bf2e
1
Parent(s):
4c86298
Update 01_π₯_Input_YouTube_Link.py
Browse files
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.")
|