From 64b3bdd94fdf6d7b348c6cef72c1e77bed6ebe57 Mon Sep 17 00:00:00 2001 From: tlpss Date: Fri, 29 Sep 2023 13:57:28 +0200 Subject: [PATCH] change delimiter --- keypoint_detection/tasks/train.py | 2 +- test/integration_test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/keypoint_detection/tasks/train.py b/keypoint_detection/tasks/train.py index d99f3e3..bd4f6e3 100644 --- a/keypoint_detection/tasks/train.py +++ b/keypoint_detection/tasks/train.py @@ -29,7 +29,7 @@ def add_system_args(parent_parser: ArgumentParser) -> ArgumentParser: parser.add_argument( "--keypoint_channel_configuration", type=str, - help="A list of the semantic keypoints that you want to learn in each channel. These semantic categories must be defined in the COCO dataset. Seperate the channels with a ; and the categories within a channel with a =", + help="A list of the semantic keypoints that you want to learn in each channel. These semantic categories must be defined in the COCO dataset. Seperate the channels with a : and the categories within a channel with a =", ) parser.add_argument( diff --git a/test/integration_test.sh b/test/integration_test.sh index 20203be..537c9d5 100644 --- a/test/integration_test.sh +++ b/test/integration_test.sh @@ -4,6 +4,6 @@ # make sure to remove all trailing spaces from the command, as this would result in an error when using bash. python keypoint_detection/tasks/train.py \ ---keypoint_channel_configuration "box_corner0= box_corner1 = box_corner2= box_corner3; flap_corner0 ; flap_corner2" \ +--keypoint_channel_configuration "box_corner0= box_corner1 = box_corner2= box_corner3: flap_corner0:flap_corner2" \ --json_dataset_path "test/test_dataset/coco_dataset.json" --json_validation_dataset_path "test/test_dataset/coco_dataset.json" --batch_size 2 --wandb_project "keypoint-detector-integration-test" \ --max_epochs 50 --early_stopping_relative_threshold -1.0 --log_every_n_steps 1 --accelerator="gpu" --devices 1 --precision 16 --augment_train