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

Class ModelMeanType

mogen/models/utils/gaussian_diffusion.py:283–290  ·  view source on GitHub ↗

Which type of output the model predicts.

Source from the content-addressed store, hash-verified

281
282
283class ModelMeanType(enum.Enum):
284 """
285 Which type of output the model predicts.
286 """
287
288 PREVIOUS_X = enum.auto() # the model predicts x_{t-1}
289 START_X = enum.auto() # the model predicts x_0
290 EPSILON = enum.auto() # the model predicts epsilon
291
292
293class ModelVarType(enum.Enum):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected