Skip to content

Commit 5e42e47

Browse files
committed
Fix model paths
1 parent 7d13bc5 commit 5e42e47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

brats/model/project/mlcube.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ 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))
6060

6161

6262
if __name__ == "__main__":

0 commit comments

Comments
 (0)