diff --git a/scripts/run.py b/scripts/run.py index 6b4929a90dd00e7d5dd6a39f070dca76cf4e3aa8..3f576e9500fcbb3cd7535dd04f65f1b7444d4f70 100644 --- a/scripts/run.py +++ b/scripts/run.py @@ -29,7 +29,7 @@ def parse_args(): parser.add_argument("files", nargs="*", help="Files to be loaded. Can be a scene, network config, snapshot, camera path, or a combination of those.") - parser.add_argument("--scene", "--training_data", default="", help="The scene to load. Can be the scene's name or a full path to the training data. Can be NeRF dataset, a *.obj/*.ply mesh for training a SDF, an image, or a *.nvdb volume.") + parser.add_argument("--scene", "--training_data", default="", help="The scene to load. Can be the scene's name or a full path to the training data. Can be NeRF dataset, a *.obj/*.stl mesh for training a SDF, an image, or a *.nvdb volume.") parser.add_argument("--mode", default="", type=str, help=argparse.SUPPRESS) # deprecated parser.add_argument("--network", default="", help="Path to the network config. Uses the scene's default if unspecified.") diff --git a/src/main.cu b/src/main.cu index ee39a5645abdbd2428d5348b4728400898833c6b..95628b70e62ac0e5784dc4401bb5a683edd0b154 100644 --- a/src/main.cu +++ b/src/main.cu @@ -71,7 +71,7 @@ int main(int argc, char** argv) { ValueFlag<string> scene_flag{ parser, "SCENE", - "The scene to load. Can be NeRF dataset, a *.obj/*.ply mesh for training a SDF, an image, or a *.nvdb volume.", + "The scene to load. Can be NeRF dataset, a *.obj/*.stl mesh for training a SDF, an image, or a *.nvdb volume.", {'s', "scene"}, };