You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument("audio", nargs="+", type=str, help="audio file(s) to transcribe")
28
28
parser.add_argument("--model", default="small", help="name of the Whisper model to use")
29
+
parser.add_argument("--model_cache_only", type=str2bool, default=False, help="If True, will not attempt to download models, instead using cached models from --model_dir")
29
30
parser.add_argument("--model_dir", type=str, default=None, help="the path to save model files; uses ~/.cache/whisper by default")
30
31
parser.add_argument("--device", default="cuda"iftorch.cuda.is_available() else"cpu", help="device to use for PyTorch inference")
31
32
parser.add_argument("--device_index", default=0, type=int, help="device index to use for FasterWhisper inference")
0 commit comments