fix a comment issue in the data_process script
Browse files- configs/metadata.json +2 -1
- scripts/data_process.py +2 -2
configs/metadata.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_20220324.json",
|
| 3 |
-
"version": "0.3.
|
| 4 |
"changelog": {
|
|
|
|
| 5 |
"0.3.4": "add note for multi-gpu training with example dataset",
|
| 6 |
"0.3.3": "enhance data preprocess script and readme file",
|
| 7 |
"0.3.2": "restructure readme to match updated template",
|
|
|
|
| 1 |
{
|
| 2 |
"schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_20220324.json",
|
| 3 |
+
"version": "0.3.5",
|
| 4 |
"changelog": {
|
| 5 |
+
"0.3.5": "fix a comment issue in the data_process script",
|
| 6 |
"0.3.4": "add note for multi-gpu training with example dataset",
|
| 7 |
"0.3.3": "enhance data preprocess script and readme file",
|
| 8 |
"0.3.2": "restructure readme to match updated template",
|
scripts/data_process.py
CHANGED
|
@@ -54,11 +54,11 @@ if __name__ == "__main__":
|
|
| 54 |
"--datapath",
|
| 55 |
type=str,
|
| 56 |
default=r"/workspace/data/endoscopic_inbody_classification",
|
| 57 |
-
help="
|
| 58 |
)
|
| 59 |
|
| 60 |
# path to save label json.
|
| 61 |
-
parser.add_argument("--outpath", type=str, default=r"./label", help="
|
| 62 |
|
| 63 |
args = parser.parse_args()
|
| 64 |
data_path = args.datapath
|
|
|
|
| 54 |
"--datapath",
|
| 55 |
type=str,
|
| 56 |
default=r"/workspace/data/endoscopic_inbody_classification",
|
| 57 |
+
help="The root path of the inbody classification dataset.",
|
| 58 |
)
|
| 59 |
|
| 60 |
# path to save label json.
|
| 61 |
+
parser.add_argument("--outpath", type=str, default=r"./label", help="The output path of labels.")
|
| 62 |
|
| 63 |
args = parser.parse_args()
|
| 64 |
data_path = args.datapath
|