Skip to content

Commit aa0f972

Browse files
committed
fix: updated the "qcfg file" name in dq.py
Signed-off-by: omobayode.fagbohungbe <[email protected]>
1 parent 929477d commit aa0f972

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

fms_mo/dq.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,9 +214,8 @@ def run_dq(model_args, data_args, opt_args, fms_mo_args):
214214
else:
215215
import json
216216
q_file = open('qcfg_llama.json', "r", encoding="utf-8")
217-
a = json.load(q_file)
218-
print(a)
219-
qcfg.update(a)
217+
saved_qcfg = json.load(q_file)
218+
qcfg.update(saved_qcfg)
220219
print(qcfg)
221220

222221
qmodel_prep(

0 commit comments

Comments
 (0)