Which type of output the model predicts.
| 274 | |
| 275 | |
| 276 | class 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 | |
| 286 | class ModelVarType(enum.Enum): |
nothing calls this directly
no outgoing calls
no test coverage detected