From 5c04e3574315ff9f4df1a8d5d34795bb90d7b986 Mon Sep 17 00:00:00 2001 From: bkerbl Date: Fri, 14 Jul 2023 21:34:59 +0200 Subject: [PATCH] Update readme --- README.md | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9703ae6..4ba5215 100644 --- a/README.md +++ b/README.md @@ -130,6 +130,20 @@ python train.py -s Flag to make pipeline compute forward and backward of the 3D covariance with PyTorch instead of ours. #### --iterations Number of total iterations to train for, ```30_000``` by default. + #### --ip + IP to start GUI server on, ```127.0.0.1``` by default. + #### --port + Port to use for GUI server, ```6009``` by default. + #### --test_iterations + Space-separated iterations at which the training script computes L1 and PSNR over test set, ```7000 30000``` by default. + #### --save_iterations + Space-separated iterations at which the training script saves the Gaussian model, ```7000 30000 ``` by default. + #### --checkpoint_iterations + Space-separated iterations at which to store a checkpoint for continuing later, saved in the model directory. + #### --start_checkpoint + Path to a saved checkpoint to continue training from. + #### --quiet + Flag to omit any text written to standard out pipe. #### --feature_lr Spherical harmonics features learning rate, ```0.0025``` by default. #### --opacity_lr @@ -160,16 +174,6 @@ python train.py -s Influence of SSIM on total loss from 0 to 1, ```0.2``` by default. #### --percent_dense Percentage of scene extent (0--1) a point must exceed to be forcibly densified, ```0.1``` by default. - #### --ip - IP to start GUI server on, ```127.0.0.1``` by default. - #### --port - Port to use for GUI server, ```6009``` by default. - #### --test_iterations - Space-separated iterations at which the training script computes L1 and PSNR over test set, ```7000 30000``` by default. - #### --save_iterations - Space-separated iterations at which the training script saves the Gaussian model, ```7000 30000 ``` by default. - #### --quiet - Flag to omit any text written to standard out pipe.