Factors to multiply deltas with before activation. These factors effectively selectively reduce the learning rate.
| 53 | |
| 54 | @dataclasses.dataclass |
| 55 | class DeltaFactor: |
| 56 | """Factors to multiply deltas with before activation. |
| 57 | |
| 58 | These factors effectively selectively reduce the learning rate. |
| 59 | """ |
| 60 | |
| 61 | xy: float = 0.001 |
| 62 | z: float = 0.001 |
| 63 | color: float = 0.1 # We recommend 0.1 for linearRGB and 1.0 for sRGB. |
| 64 | opacity: float = 1.0 |
| 65 | scale: float = 1.0 |
| 66 | quaternion: float = 1.0 |
| 67 | |
| 68 | |
| 69 | @dataclasses.dataclass |
nothing calls this directly
no outgoing calls
no test coverage detected