Project-MONAI / tutorials

MONAI Tutorials
https://monai.io/started.html
Apache License 2.0
1.74k stars 662 forks source link

the argument needed to change the default directory in pathology/tumor_detection/README.MD #1704

Open EinfachYan opened 3 months ago

EinfachYan commented 3 months ago

Describe the bug

In README.MD:

you can easily modify it to point to a different directory by passing the following argument in the runtime: --data-root /other/data/root/dir/

In .py files:

    parser.add_argument(
        "--root",
        type=str,
        default="/workspace/data/medical/pathology",
        help="path to image folder containing training/validation",
    )

“--data-root ” in README.MD should be changed to "--root" ?