MCPcopy Create free account
hub / github.com/apple/ml-sharp / DeltaFactor

Class DeltaFactor

src/sharp/models/params.py:55–66  ·  view source on GitHub ↗

Factors to multiply deltas with before activation. These factors effectively selectively reduce the learning rate.

Source from the content-addressed store, hash-verified

53
54@dataclasses.dataclass
55class 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected