What is used as the model's output variance. The LEARNED_RANGE option has been added to allow the model to predict values between FIXED_SMALL and FIXED_LARGE, making its job easier.
| 291 | |
| 292 | |
| 293 | class ModelVarType(enum.Enum): |
| 294 | """ |
| 295 | What is used as the model's output variance. |
| 296 | |
| 297 | The LEARNED_RANGE option has been added to allow the model to predict |
| 298 | values between FIXED_SMALL and FIXED_LARGE, making its job easier. |
| 299 | """ |
| 300 | |
| 301 | LEARNED = enum.auto() |
| 302 | FIXED_SMALL = enum.auto() |
| 303 | FIXED_LARGE = enum.auto() |
| 304 | LEARNED_RANGE = enum.auto() |
| 305 | |
| 306 | |
| 307 | class LossType(enum.Enum): |
nothing calls this directly
no outgoing calls
no test coverage detected