Commit 68ff2c1
Abstracting out the GS heuristics into a Strategy class (#278)
* [DRAFT] gsplat refactor (#269)
* initial commit, rough design of modules
* moved strategy.py into gsplat dir
* latest commit for 1:1 meeting
* removed ops, losses, and strategies now inherit from an abstract 'Strategy' class
* GSs init handled in private method
* format
* class Gaussian3D
* WIP: _strategy
* simple_trainer no longer uses Gaussians object and instead uses ParameterDict with newly-added 'activations' dict
* simple_trainer no longer uses Gaussians object and instead uses ParameterDict with newly-added 'activations' dict
* created mcmc and revised strategy, simplified training scripts
* update _strategy
* minor
* implemented ruilongs' suggested changes, no longer using separate class for revised ADS heuristics
* added docstrings, removed overriding activations attribute, fixed device argument passing
* mcmc and default are all trainable
* cleanup
* minor
* minor
* minor
* minor
* hardcode activations into strategy
* minor cleanup
* minor
* seperate the strategy in to individual files
* change optimizers from List to Dict
* switch to dataclass
* stateless strategy
* minor cleanup
* revised_opacity
* _update_param_with_optimizer
* individual ops
* means3d -> means
* starting docs
* docs
* docs
* docs
* docs
* docs
* minor fix to pass test
* move BINOMS to strategy state
* nits
* nit fix
* viewcode
* relocation func cleanup
* nits in docs
* cleanup imports
* minor cleanup
* support screen size pruning / splitting
---------
Co-authored-by: Ryan Tabrizi <[email protected]>
Co-authored-by: Ruilong Li <[email protected]>
Co-authored-by: rtabrizi <[email protected]>1 parent e1de4c3 commit 68ff2c1
File tree
16 files changed
+1167
-427
lines changed- docs/source
- apis
- examples
- gsplat
- strategy
- tests
16 files changed
+1167
-427
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| 32 | + | |
32 | 33 | | |
33 | 34 | | |
34 | 35 | | |
| |||
0 commit comments