From 8c69174c595e91ce6f43ec58d31a087bbd143374 Mon Sep 17 00:00:00 2001 From: Guspan Tanadi <36249910+guspan-tanadi@users.noreply.github.com> Date: Mon, 25 Sep 2023 14:06:44 +0700 Subject: [PATCH 1/6] docs: bit misspell Fields --- docs/developer_guides/pipelines/fields.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer_guides/pipelines/fields.md b/docs/developer_guides/pipelines/fields.md index f4c9c6d2..5533db49 100644 --- a/docs/developer_guides/pipelines/fields.md +++ b/docs/developer_guides/pipelines/fields.md @@ -56,7 +56,7 @@ class Field(nn.Module): The forward function is the main function you'll use, which takes in RaySamples returns quantities for each sample. You'll notice that the get_density function is called for every field, followed by the get_outputs function. -The get_outputs function is what you need to implement to return custom data. For example, check out of SemanticNerfField where we rely on different FieldHeads to produce correct dimensional outputs for typical quantiites. Our implemented FieldHeads have the following FieldHeadNames names. +The get_outputs function is what you need to implement to return custom data. For example, check out of SemanticNerfField where we rely on different FieldHeads to produce correct dimensional outputs for typical quantities. Our implemented FieldHeads have the following FieldHeadNames names. ```python class FieldHeadNames(Enum): From 91b04a1d15b97e9c762bdf35b9d07da98137903b Mon Sep 17 00:00:00 2001 From: Guspan Tanadi <36249910+guspan-tanadi@users.noreply.github.com> Date: Mon, 25 Sep 2023 14:22:06 +0700 Subject: [PATCH 2/6] docs: bit misspell in Models pipelines --- docs/developer_guides/pipelines/models.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer_guides/pipelines/models.md b/docs/developer_guides/pipelines/models.md index 92f90695..35805c8c 100644 --- a/docs/developer_guides/pipelines/models.md +++ b/docs/developer_guides/pipelines/models.md @@ -20,7 +20,7 @@ A model, at a high level, takes in regions of space described by RayBundle objec ## Functions to Implement -[The code](https://github.com/nerfstudio-project/nerfstudio/blob/master/nerfstudio/models/base_model.py) is quite verbose, so here we distill the most important functions with succint descriptions. +[The code](https://github.com/nerfstudio-project/nerfstudio/blob/master/nerfstudio/models/base_model.py) is quite verbose, so here we distill the most important functions with succinct descriptions. ```python class Model: From 636d724a4a012fc5413c5169da3b009a787326d8 Mon Sep 17 00:00:00 2001 From: Guspan Tanadi <36249910+guspan-tanadi@users.noreply.github.com> Date: Mon, 25 Sep 2023 14:28:46 +0700 Subject: [PATCH 3/6] docs: bit misspell DataParsers --- docs/developer_guides/pipelines/dataparsers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer_guides/pipelines/dataparsers.md b/docs/developer_guides/pipelines/dataparsers.md index 458abdeb..66a46611 100644 --- a/docs/developer_guides/pipelines/dataparsers.md +++ b/docs/developer_guides/pipelines/dataparsers.md @@ -103,7 +103,7 @@ dataparser_outputs = dataparser.get_dataparser_outputs(split="train") input_dataset = InputDataset(dataparser_outputs) ``` -You can also pull out information from the DataParserOutputs for other DataMangager componenets, such as the RayGenerator. The RayGenerator generates RayBundle objects from camera and pixel indices. +You can also pull out information from the DataParserOutputs for other DataManager components, such as the RayGenerator. The RayGenerator generates RayBundle objects from camera and pixel indices. ```python ray_generator = RayGenerator(dataparser_outputs.cameras) From cc3b665d3851a8a6763619de414a978c2469c292 Mon Sep 17 00:00:00 2001 From: Guspan Tanadi <36249910+guspan-tanadi@users.noreply.github.com> Date: Mon, 25 Sep 2023 14:39:38 +0700 Subject: [PATCH 4/6] docs: bit misspell Model components --- docs/nerfology/model_components/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/nerfology/model_components/index.md b/docs/nerfology/model_components/index.md index e3619d89..3d2f0dd9 100644 --- a/docs/nerfology/model_components/index.md +++ b/docs/nerfology/model_components/index.md @@ -1,6 +1,6 @@ # Model components -It can be difficult getting started with NeRFs. The reserach field is still quite new and most of the key nuggets are burried in academic papers. For this reason, we have consoladated many of the key concepts into a series of guides. +It can be difficult getting started with NeRFs. The reserach field is still quite new and most of the key nuggets are burried in academic papers. For this reason, we have consolidated many of the key concepts into a series of guides. ```{toctree} :maxdepth: 1 From 365ea7199adb96ef1055d007777a9ecaa718249d Mon Sep 17 00:00:00 2001 From: Guspan Tanadi <36249910+guspan-tanadi@users.noreply.github.com> Date: Mon, 25 Sep 2023 14:56:01 +0700 Subject: [PATCH 5/6] docs: bit misspell sdfstudio-data comments --- docs/sdfstudio-data.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/sdfstudio-data.md b/docs/sdfstudio-data.md index 82ea1084..4518b863 100644 --- a/docs/sdfstudio-data.md +++ b/docs/sdfstudio-data.md @@ -30,7 +30,7 @@ The json file (meta_data.json) stores meta data of the scene and has the followi 'has_mono_prior': true, # use monocular cues or not 'pairs': 'pairs.txt', # pairs file used for multi-view photometric consistency loss 'worldtogt': [ - [1, 0, 0, 0], # world to gt transformation (useful for evauation) + [1, 0, 0, 0], # world to gt transformation (useful for evaluation) [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1], @@ -52,7 +52,7 @@ The json file (meta_data.json) stores meta data of the scene and has the followi }, 'frames': [ # this contains information for each image { - # note that all paths are relateive path + # note that all paths are relative path # path of rgb image 'rgb_path': '000000_rgb.png', # camera to world transform @@ -134,7 +134,7 @@ ns-download-data sdfstudio --dataset-name neural-rgbd-data Then run the following command to convert the downloaded neural-rgbd dataset to SDFStudio format: ```bash -# kitchen scene for example, replca the scene path to convert other scenes +# kitchen scene for example, replica the scene path to convert other scenes python scripts/datasets/process_neuralrgbd_to_sdfstudio.py --input_path data/neural-rgbd-data/kitchen/ --output_path data/neural_rgbd/kitchen_sensor_depth --type sensor_depth ``` From 610f267eeb4182ed092c2663c61b87a042dcb3f3 Mon Sep 17 00:00:00 2001 From: Guspan Tanadi <36249910+guspan-tanadi@users.noreply.github.com> Date: Mon, 25 Sep 2023 15:19:11 +0700 Subject: [PATCH 6/6] docs: bit misspell comment in Models --- docs/developer_guides/pipelines/models.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer_guides/pipelines/models.md b/docs/developer_guides/pipelines/models.md index 35805c8c..6aef9ec8 100644 --- a/docs/developer_guides/pipelines/models.md +++ b/docs/developer_guides/pipelines/models.md @@ -52,7 +52,7 @@ class Model: """Returns the training callbacks, such as updating a density grid for Instant NGP.""" def get_outputs(self, ray_bundle: RayBundle): - """Process a RayBundle object and return RayOutputs describing quanties for each ray.""" + """Process a RayBundle object and return RayOutputs describing quantities for each ray.""" def get_metrics_dict(self, outputs, batch): """Returns metrics dictionary which will be plotted with wandb or tensorboard."""