MCPcopy Create free account
hub / github.com/MotrixLab/MotionDiffuse / ModelMeanType

Class ModelMeanType

text2motion/models/gaussian_diffusion.py:276–283  ·  view source on GitHub ↗

Which type of output the model predicts.

Source from the content-addressed store, hash-verified

274
275
276class ModelMeanType(enum.Enum):
277 """
278 Which type of output the model predicts.
279 """
280
281 PREVIOUS_X = enum.auto() # the model predicts x_{t-1}
282 START_X = enum.auto() # the model predicts x_0
283 EPSILON = enum.auto() # the model predicts epsilon
284
285
286class ModelVarType(enum.Enum):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected