Skip to content

Commit cec0f3a

Browse files
committed
skip chunk0: fix ckpt file format
1 parent f004f23 commit cec0f3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netshare/model_managers/netshare_manager/netshare_util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def _configs2configsgroup(
156156
ckpt_dir = os.path.join(
157157
configs[config_id]["result_folder"],
158158
"checkpoint",
159-
"epoch_id-{}".format(epoch_id)
159+
"epoch_id-{}.pt".format(epoch_id)
160160
)
161161
if os.path.exists(ckpt_dir):
162162
last_epoch_found = True

0 commit comments

Comments
 (0)