Spaces:
Running
Running
jhj0517
commited on
Commit
·
4bb0eec
1
Parent(s):
2d93272
fix arg hint
Browse files
app.py
CHANGED
|
@@ -379,7 +379,7 @@ class App:
|
|
| 379 |
|
| 380 |
# Create the parser for command-line arguments
|
| 381 |
parser = argparse.ArgumentParser()
|
| 382 |
-
parser.add_argument('--whisper_type', type=str, default="faster-whisper", help='A type of the whisper implementation between: ["whisper", "faster-whisper"]')
|
| 383 |
parser.add_argument('--share', type=bool, default=False, nargs='?', const=True, help='Gradio share value')
|
| 384 |
parser.add_argument('--server_name', type=str, default=None, help='Gradio server host')
|
| 385 |
parser.add_argument('--server_port', type=int, default=None, help='Gradio server port')
|
|
|
|
| 379 |
|
| 380 |
# Create the parser for command-line arguments
|
| 381 |
parser = argparse.ArgumentParser()
|
| 382 |
+
parser.add_argument('--whisper_type', type=str, default="faster-whisper", help='A type of the whisper implementation between: ["whisper", "faster-whisper", "insanely-fast-whisper"]')
|
| 383 |
parser.add_argument('--share', type=bool, default=False, nargs='?', const=True, help='Gradio share value')
|
| 384 |
parser.add_argument('--server_name', type=str, default=None, help='Gradio server host')
|
| 385 |
parser.add_argument('--server_port', type=int, default=None, help='Gradio server port')
|