functionality supports these SQL functions for machine learning models.Documentation Index
Fetch the complete documentation index at: https://docs.ocient.com/llms.txt
Use this file to discover all available pages before exploring further.
The scope of a machine learning model is the schema.
Supported Machine Learning Models
Supported machine learning models and reference material are divided into these categories.For functions to help organize data before training a model, see Data Preparation.
Regression Models
- Simple Linear Regression
- Multiple Linear Regression
- Vector Autoregression
- Polynomial Regression
- Linear Combination Regression
- Nonlinear Regression
- Gradient Boosted Trees
- Regression Tree
Classification Models
- K Nearest Neighbor Classification
- Naive Bayes Classification
- Decision Tree
- Random Forest
- Logistic Regression
- Support Vector Machine
- Gradient Boosted Trees
Clustering and Dimension Reduction Models
Ensemble Models
Other Models
For a view of the full list of model options, see Machine Learning Model Options.Execute a Query Using a Machine Learning Model
To create a machine learning model and manage the model, see Machine Learning Models for the corresponding syntax. After you create the model, you can execute a query using the model with this syntax. SyntaxSQL
| Parameter | Data Type | Description |
|---|---|---|
model_name | identifier | The name of a machine learning model created using a CREATE MODEL SQL statement. The model name must be a valid identifier and reference an existing trained model. |
expression | identifier string numeric | One or more expressions that serve as input features for the machine learning model evaluation. These expressions must match the expected input schema the model was trained on. Expressions can be any combination of literal values, column names, arithmetic expressions, and function invocations, with parentheses for grouping. |
table_reference | identifier | The name of a table, view, or subquery that provides the data for model evaluation. The table must contain columns or computed expressions that match the expected input features of the model. |
SQL
SQL
SELECT query against the multiple linear regression to see the actual and predicted values. Limit the result set to 10 rows.
SQL
Text

