Arize Query Language Syntax
Custom Metric Syntax Overview
Custom metrics use an Arize SQL-like query language.SELECT
Every query starts with a SELECT statement.
FROM
The FROM statement should beFROM model, where model refers to the model that the custom metric was created under.
Constants
A constant can be a number or string. Strings use single quotes like this:'this is a string'. Numbers can be floats or integers.
Expressions
Dimensions
A dimension is any feature, tag, prediction, actual, or span property of a model. A dimension can either be of type string or of type numeric.Comments
Comments can be added to your query in one of two ways: Single line comment (shortcut isCMD + /)