Skip to content

Commit

Permalink
freeze package versions in env.yml, imagecodecs (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
w-m committed Dec 3, 2024
1 parent aa80103 commit aae1473
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 18 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ If you use our method in your research, please cite our paper. The paper was pre

## Updates

- 2024-12-03: Freezing package versions in environment.yml, particularly imagecodecs. There is a regression in file size with later imagecodecs versions, see [#3](https://github.com/fraunhoferhhi/Self-Organizing-Gaussians/issues/3).
- 2024-11-28: Add [ECCV 2024 Redux Talk](https://www.youtube.com/watch?v=nb5U9xfx7-w), [View Dependent Podcast](https://www.youtube.com/watch?v=Y0O6R0Keywg) and proceedings .bib to project page.
- 2024-10-30: Update project page with reduction factors from updated metric computation -> 19.9x to 39.5x compression over 3DGS.
- 2024-09-16: Script to compute per-scene metrics from uploaded models (see *Pre-Trained Models & Evaluation*). This fixes issues in the metric computation, previously done from Weights & Biases runs: *Dr Johnson* now correctly attributed to DeepBlending dataset (was: *T&T*); Quality loss from quantization and compression losses correctly incorporated.
Expand Down
41 changes: 23 additions & 18 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,31 @@ dependencies:

- cudatoolkit=11.8

- pytorch
- pytorch=2.4
- pytorch-cuda=11.8
- torchvision

- click
- hydra-core
- kornia
- opencv
- pandas
- pip
- plyfile
- screeninfo
- scipy
- tqdm
- torchvision=0.19

# for compatibility with imagecodecs 2023.9.18
- numpy<2

- click=8.1
- hydra-core=1.3
- kornia=0.7
- opencv=4.10
- pandas=2.2
- pip=24.3
- plyfile=1.1
- scipy=1.14
- screeninfo=0.8
- tqdm=4.67

- pip:
- submodules/diff-gaussian-rasterization
- submodules/simple-knn
- submodules/diff-gaussian-rasterization
- submodules/simple-knn

- submodules/PLAS

- submodules/PLAS
# later imagecodecs version produce much larger JPEG XL files
- imagecodecs[all]==2023.9.18

- imagecodecs[all]
- wandb
- wandb==0.18.7

0 comments on commit aae1473

Please sign in to comment.