<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; otherwise the entire model fails to train.

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.

语法

<model_name>!SHOW_TRAINING_LOGS();

输出

类型描述
SERIESVARIANT序列值(如果模型使用单个时间序列训练时,为 NULL)。
LOGSOBJECTObject containing errors encountered during training. Currently the only key is Errors, an array of errors. If no errors were encountered, the logs object is NULL.

示例

See Examples.