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
|`data_split`| FLEURS split: `train`, `dev`, or `test`|
82
82
|`wer_threshold`| Keep samples with `wer_pct ≤` this value (default: `5.5`) |
83
83
|`stages.1.model_id`| NeMo ASR model for inference |
84
+
|`stages.1.adapter_kwargs.use_cuda_graph_decoder`| RNNT CUDA-graph decoder override. The FLEURS hybrid-RNNT default is `false` for broad driver compatibility. |
84
85
|`stages.1.resources.gpus`| GPUs for ASR (`0` for CPU) |
85
86
|`backend`|`xenna` (default) or `ray_data`|
86
87
@@ -233,6 +234,7 @@ finally:
233
234
|---|---|---|
234
235
| Output directory already exists | Previous run left `${raw_data_dir}/result/${lang}/`| Remove the directory before re-running |
235
236
| OOM during ASR inference | GPU VRAM too small for model + batch | Reduce `stages.1.batch_size` or use a smaller model |
237
+
|`CUDA error: invalid argument` in RNNT label-loop decoding | NeMo CUDA-graph decoder is unsupported by the local CUDA runtime/driver combination | Set `stages.1.adapter_kwargs.use_cuda_graph_decoder=false` (the supplied FLEURS config already does this) |
236
238
| CPU inference very slow | CPU is 10–50x slower than GPU | Set `stages.1.resources.gpus=1`; CPU is only for testing |
237
239
| Empty output JSONL |`wer_threshold` too strict for the model+language pair | Increase `wer_threshold` or use a better-matching ASR model |
238
240
| HuggingFace download fails | Network/auth issue | Check connectivity; some splits may need `huggingface-cli login`|
0 commit comments