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
with open(config_txt_path,'a') as f:
for key,value in self.dict.items():
if key in ["checkpoints_dir","logs_dir","config_dir"]:
value = os.path.join(value,time)
s = key+": "+value+"\n"
f.write(s)
在运行s = key+": "+value+"\n"时出错,请问是否是缺少了缩进呢?
改后:
with open(config_txt_path,'a') as f:
for key,value in self.dict.items():
if key in ["checkpoints_dir","logs_dir","config_dir"]:
value = os.path.join(value,time)
s = key+": "+value+"\n"
f.write(s)
感谢代码!
The text was updated successfully, but these errors were encountered:
在运行
s = key+": "+value+"\n"
时出错,请问是否是缺少了缩进呢?改后:
感谢代码!
The text was updated successfully, but these errors were encountered: