Skip to content

Commit

Permalink
Merge pull request #38 from ichsan2895/main
Browse files Browse the repository at this point in the history
Enable coarse to fine training
  • Loading branch information
pierotofy authored Mar 12, 2024
2 parents bb8dbd6 + 6bd8f94 commit e01b8a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions opensplat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ int main(int argc, char *argv[]){

("n,num-iters", "Number of iterations to run", cxxopts::value<int>()->default_value("30000"))
("d,downscale-factor", "Scale input images by this factor.", cxxopts::value<float>()->default_value("1"))
("num-downscales", "Number of images downscales to use. After being scaled by [downscale-factor], images are initially scaled by a further (2^[num-downscales]) and the scale is increased every [resolution-schedule]", cxxopts::value<int>()->default_value("3"))
("resolution-schedule", "Double the image resolution every these many steps", cxxopts::value<int>()->default_value("250"))
("num-downscales", "Number of images downscales to use. After being scaled by [downscale-factor], images are initially scaled by a further (2^[num-downscales]) and the scale is increased every [resolution-schedule]", cxxopts::value<int>()->default_value("2"))
("resolution-schedule", "Double the image resolution every these many steps", cxxopts::value<int>()->default_value("3000"))
("sh-degree", "Maximum spherical harmonics degree (must be > 0)", cxxopts::value<int>()->default_value("3"))
("sh-degree-interval", "Increase the number of spherical harmonics degree after these many steps (will not exceed [sh-degree])", cxxopts::value<int>()->default_value("1000"))
("ssim-weight", "Weight to apply to the structural similarity loss. Set to zero to use least absolute deviation (L1) loss only", cxxopts::value<float>()->default_value("0.2"))
Expand Down Expand Up @@ -145,4 +145,4 @@ int main(int argc, char *argv[]){
std::cerr << e.what() << std::endl;
exit(1);
}
}
}

0 comments on commit e01b8a7

Please sign in to comment.