Skip to content

Commit

Permalink
Update run.py
Browse files Browse the repository at this point in the history
  • Loading branch information
thangckt committed Aug 27, 2024
1 parent dc73a4f commit a20e84e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dpgen/generator/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -1559,7 +1559,7 @@ def _make_model_devi_native(iter_index, jdata, mdata, conf_systems):
models = sorted(glob.glob(os.path.join(train_path, f"graph*{suffix}")))
task_model_list = []
for ii in models:
task_model_list.append(os.path.join("..", os.path.basename(ii)))
task_model_list.append(Path(f"../{Path(ii).name}").as_posix())
work_path = os.path.join(iter_name, model_devi_name)

sys_counter = 0
Expand Down

0 comments on commit a20e84e

Please sign in to comment.