From 80da94fcab4d7ad6ac522c526a8df4a3c6abc22c Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Tue, 4 Jun 2019 10:46:32 +0200 Subject: [PATCH] Improves wording of prepare functionality documentation Signed-off-by: Jim Martens --- src/twomartens/masterthesis/data.py | 4 ++-- src/twomartens/masterthesis/main.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/twomartens/masterthesis/data.py b/src/twomartens/masterthesis/data.py index 631de5b..163f42c 100644 --- a/src/twomartens/masterthesis/data.py +++ b/src/twomartens/masterthesis/data.py @@ -362,8 +362,8 @@ def prepare_scenenet_val(data_path: str, protobuf_path: str) -> Tuple[List[List[ Prepares the SceneNet RGB-D data and returns it in Python format. Args: - data_path: path to the SceneNet RGB-D val data set - protobuf_path: path to the SceneNet RGB-D val protobuf + data_path: path to the SceneNet RGB-D data set + protobuf_path: path to the SceneNet RGB-D protobuf Returns: file names photos, file names instances, instances """ diff --git a/src/twomartens/masterthesis/main.py b/src/twomartens/masterthesis/main.py index b66e2b1..ff0cdd7 100644 --- a/src/twomartens/masterthesis/main.py +++ b/src/twomartens/masterthesis/main.py @@ -61,8 +61,8 @@ def main() -> None: def _build_prepare(parser: argparse.ArgumentParser) -> None: - parser.add_argument("scenenet_path", type=str, help="the path to the SceneNet RGB-D validation data set") - parser.add_argument("protobuf_path", type=str, help="the path to the SceneNet RGB-D validation protobuf file") + parser.add_argument("scenenet_path", type=str, help="the path to the SceneNet RGB-D data set") + parser.add_argument("protobuf_path", type=str, help="the path to the SceneNet RGB-D protobuf file") parser.add_argument("ground_truth_path", type=str, help="the path where the ground truth should be stored")