Skip to content

Commit 9ecfc19

Browse files
committed
Fix model paths
1 parent 7d13bc5 commit 9ecfc19

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

brats/model/project/mlcube.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ def infer(
5656
parameters_file: str = typer.Option(..., "--parameters_file")
5757
):
5858
filename = "BraTS_example_seg.nii.gz"
59-
shutil.copyfile(data_path+filename, output_path+filename)
59+
shutil.copyfile(os.path.join(data_path, filename), os.path.join(output_path, filename))
60+
print("Done!")
6061

6162

6263
if __name__ == "__main__":

0 commit comments

Comments
 (0)