We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52f3854 commit 4156fc2Copy full SHA for 4156fc2
1 file changed
nemo/collections/tts/modules/magpietts_inference/utils.py
@@ -664,7 +664,7 @@ def parse_layer_list(layer_str: Optional[str]) -> Optional[List[int]]:
664
"""Parse a comma-separated list of layer indices."""
665
if layer_str is None:
666
return None
667
- return [int(l.strip()) for l in layer_str.split(",")]
+ return [int(layer.strip()) for layer in layer_str.split(",")]
668
669
670
def write_csv_header_if_needed(csv_path: str, header: str) -> None:
0 commit comments