Improves wording of prepare functionality documentation

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2019-06-04 10:46:32 +02:00
parent 13cecd2254
commit 80da94fcab
2 changed files with 4 additions and 4 deletions

View File

@ -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. Prepares the SceneNet RGB-D data and returns it in Python format.
Args: Args:
data_path: path to the SceneNet RGB-D val data set data_path: path to the SceneNet RGB-D data set
protobuf_path: path to the SceneNet RGB-D val protobuf protobuf_path: path to the SceneNet RGB-D protobuf
Returns: Returns:
file names photos, file names instances, instances file names photos, file names instances, instances
""" """

View File

@ -61,8 +61,8 @@ def main() -> None:
def _build_prepare(parser: argparse.ArgumentParser) -> 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("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 validation protobuf file") 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") parser.add_argument("ground_truth_path", type=str, help="the path where the ground truth should be stored")