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
"Loading of grammar dataset failed! Please check (https://github.com/meta-llama/llama-recipes/blob/main/src/llama_recipes/datasets/grammar_dataset/grammar_dataset_process.ipynb) for details on how to download the dataset."
25
+
logger.raise_error(
26
+
"Loading of grammar dataset failed! Please check (https://github.com/meta-llama/llama-recipes/blob/main/src/llama_recipes/datasets/grammar_dataset/grammar_dataset_process.ipynb) for details on how to download the dataset.",
Copy file name to clipboardExpand all lines: QEfficient/finetune/utils/parser.py
+5-9Lines changed: 5 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -254,18 +254,14 @@ def get_finetune_parser():
254
254
action="store_true",
255
255
help="Enable distributed data parallel training. This will load the replicas of model on given number of devices and train the model. This should be used using torchrun interface. Please check docs for exact usage.",
256
256
)
257
-
parser.add_argument(
258
-
"--dump_root_dir",
259
-
"--dump-root-dir",
260
-
required=False,
261
-
type=str,
262
-
default="mismatches/step_",
263
-
help="Directory for mismatch dumps by opByOpVerifier",
264
-
)
265
257
parser.add_argument(
266
258
"--opByOpVerifier",
267
259
action="store_true",
268
-
help="Enable operation-by-operation verification w.r.t reference device(cpu). It is a context manager interface that captures and verifies each operator against reference device. In case results of test & reference do not match under given tolerances, a standalone unittest is generated at dump_root_dir.",
0 commit comments