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")