Skip to content

Commit 73e1d6d

Browse files
committed
spell
1 parent 734e481 commit 73e1d6d

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOGS.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Change Logs
22
===========
33

4+
0.4.1
5+
+++++
6+
7+
* :pr:`70`: support models options in command lines
8+
49
0.4.0
510
+++++
611

onnx_diagnostic/_command_lines_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def get_parser_config() -> ArgumentParser:
220220
default=True,
221221
action=BooleanOptionalAction,
222222
help="uses cached configuration, only available for some of them, "
223-
"moslty for unit test purposes",
223+
"mostly for unit test purposes",
224224
)
225225
parser.add_argument(
226226
"--mop",

onnx_diagnostic/torch_models/test_helper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,9 +320,9 @@ def validate_model(
320320
data["input_options"] = iop
321321
data["model_options"] = mop
322322
if iop:
323-
summary["input_options"] = iop
323+
summary["input_options"] = str(iop)
324324
if mop:
325-
summary["model_options"] = mop
325+
summary["model_options"] = str(mop)
326326
if "ERR_create" in summary:
327327
return summary, data
328328

0 commit comments

Comments
 (0)