Skip to content

Commit

Permalink
(sync)
Browse files Browse the repository at this point in the history
  • Loading branch information
AsherJingkongChen committed Dec 13, 2024
1 parent 9a8e8de commit c938d57
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
- name: Clean docs folder
run: cargo clean --doc
- name: Build docs
run: cargo doc && RUSTDOCFLAGS="--html-in-header rustdoc-header.html" cargo doc --no-deps
- name: Add redirect
run: echo '<meta http-equiv="refresh" content="0;url=Gausplat/index.html">' > target/doc/index.html
run: RUSTDOCFLAGS="--html-in-header rustdoc-header.md" cargo doc --no-deps
# - name: Add redirect
# run: echo '<meta http-equiv="refresh" content="0;url=Gausplat/index.html">' > target/doc/index.html
- name: Remove lock file
run: rm target/doc/.lock
- name: Upload artifact
Expand Down
2 changes: 1 addition & 1 deletion crates/gausplat-trainer
2 changes: 1 addition & 1 deletion examples/gausplat-scepter/src/runner/gaussian_3d/train.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ impl From<&TrainArguments> for Gaussian3dTrainerConfig {
.with_colors_sh_degree_max(arguments.sh_degree),
)
.with_range_metric_optimization_fine(RangeOptions::default_with_step(
(arguments.lambda_dssim * 2.5).recip().max(1.0) as u64,
(0.4 / arguments.lambda_dssim).max(1.0).round() as u64,
))
.with_refiner(
RefinerConfig::new()
Expand Down
File renamed without changes.

0 comments on commit c938d57

Please sign in to comment.