<model_ name>!SHOW_ TRAINING_ LOGS¶
Returns logs from model training. Output is non-NULL only when 'ON_ERROR' = 'SKIP' is set in the training
CONFIG_OBJECT.
If you need to select specific columns from the data returned by this method, you can call the method in the FROM clause of a SELECT statement. See Selecting columns from SQL class instance methods that return tabular data.
Syntax¶
Returns¶
| Column | Type | Description |
|---|---|---|
| SERIES | VARIANT | Series value (NULL if model was trained with single time series). Note Your single-series results may not have a SERIES column. See recent change. |
| LOGS | OBJECT | A log of errors encountered during training. The value for the key Errors is an array of training errors. If no errors were encountered, the LOGS column is NULL. |
Examples¶
See Detecting Anomalies.