Which type of output the model predicts.
| 64 | |
| 65 | |
| 66 | class ModelMeanType(enum.Enum): |
| 67 | """ |
| 68 | Which type of output the model predicts. |
| 69 | """ |
| 70 | |
| 71 | PREVIOUS_X = enum.auto() # the model predicts x_{t-1} |
| 72 | START_X = enum.auto() # the model predicts x_0 |
| 73 | EPSILON = enum.auto() # the model predicts epsilon |
| 74 | |
| 75 | |
| 76 | class ModelVarType(enum.Enum): |
nothing calls this directly
no outgoing calls
no test coverage detected