| 5 | |
| 6 | @dataclass |
| 7 | class Options(BaseOptions): |
| 8 | model_type = "Inference" |
| 9 | use_augmentation: bool = False |
| 10 | fix_keys: List[str] = field(default_factory=lambda: ["rot_static", "rot_dynamic"]) |
| 11 | sample_keys: List[str] = field(default_factory=list) |
| 12 | pred_keys: List[str] = field(default_factory=lambda: ["rgb", "opacity", "scale", "xyz_static"]) |
| 13 | compile: bool = True |
| 14 | |
| 15 | AllConfigs = Options |
nothing calls this directly
no outgoing calls
no test coverage detected