(params)
| 68 | from gsplat.strategy import DefaultStrategy, MCMCStrategy |
| 69 | |
| 70 | def assert_consistent_sizes(params): |
| 71 | sizes = [v.shape[0] for v in params.values()] |
| 72 | assert all([s == sizes[0] for s in sizes]) |
| 73 | |
| 74 | torch.manual_seed(42) |
| 75 |
no outgoing calls
no test coverage detected