Unverified Commit 00658e8c authored by lizz's avatar lizz Committed by GitHub
Browse files

Fix copy source file path (#796)

parent 2ab544fc
......@@ -212,7 +212,7 @@ class IterBasedRunner(BaseRunner):
if platform.system() != 'Windows':
mmcv.symlink(filename, dst_file)
else:
shutil.copy(filename, dst_file)
shutil.copy(filepath, dst_file)
def register_training_hooks(self,
lr_config,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment