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 5d46a7b commit 856159eCopy full SHA for 856159e
examples/nemo_run/qat/nemo_qat_flow.py
@@ -138,7 +138,7 @@ def get_args():
138
"--enable_kv_cache",
139
help="Enables KV-cache quantization",
140
action="store_true",
141
- default=False
+ default=False,
142
)
143
return parser.parse_args()
144
modelopt/torch/export/plugins/nemo_run.py
@@ -57,7 +57,7 @@ def _get_most_recent_ckpt(directory: str):
57
str: Path to the most recent subdirectory.
58
"""
59
exp_dir = Path(directory) / "default"
60
- if not exp_dir.exists():
+ if not exp_dir.exists():
61
raise FileNotFoundError(f"Experiment directory {exp_dir} does not exist")
62
63
checkpoint_dir = exp_dir / "checkpoints"
0 commit comments