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