Spaces:
Running
Running
jhj0517
commited on
Commit
·
849f222
1
Parent(s):
adb050a
fix arg
Browse files
notebook/whisper-webui.ipynb
CHANGED
@@ -70,7 +70,7 @@
|
|
70 |
"\n",
|
71 |
"USERNAME = '' #@param {type: \"string\"}\n",
|
72 |
"PASSWORD = '' #@param {type: \"string\"}\n",
|
73 |
-
"
|
74 |
"THEME = '' #@param {type: \"string\"}\n",
|
75 |
"\n",
|
76 |
"arguments = \"\"\n",
|
@@ -80,8 +80,8 @@
|
|
80 |
" arguments += f\" --password {PASSWORD}\"\n",
|
81 |
"if THEME:\n",
|
82 |
" arguments += f\" --theme {THEME}\"\n",
|
83 |
-
"if
|
84 |
-
" arguments += f\" --
|
85 |
"\n",
|
86 |
"\n",
|
87 |
"#@markdown If you wonder how these arguments are used, you can see the [Wiki](https://github.com/jhj0517/Whisper-WebUI/wiki/Command-Line-Arguments)."
|
|
|
70 |
"\n",
|
71 |
"USERNAME = '' #@param {type: \"string\"}\n",
|
72 |
"PASSWORD = '' #@param {type: \"string\"}\n",
|
73 |
+
"WHISPER_TYPE = 'faster-whisper' #@param {type: \"string\"}\n",
|
74 |
"THEME = '' #@param {type: \"string\"}\n",
|
75 |
"\n",
|
76 |
"arguments = \"\"\n",
|
|
|
80 |
" arguments += f\" --password {PASSWORD}\"\n",
|
81 |
"if THEME:\n",
|
82 |
" arguments += f\" --theme {THEME}\"\n",
|
83 |
+
"if WHISPER_TYPE:\n",
|
84 |
+
" arguments += f\" --whisper_type {WHISPER_TYPE}\"\n",
|
85 |
"\n",
|
86 |
"\n",
|
87 |
"#@markdown If you wonder how these arguments are used, you can see the [Wiki](https://github.com/jhj0517/Whisper-WebUI/wiki/Command-Line-Arguments)."
|