Packages

  • package root
    Definition Classes
    root
  • package ai
    Definition Classes
    root
  • package eto
    Definition Classes
    ai
  • package rikai
    Definition Classes
    eto
  • package sql

    Rikai SQL-ML extension.

    Rikai SQL-ML extension.

    Rikai offers DDL to manipulate ML Models:

    CREATE MODEL model_name
    [ OPTIONS (key=value, key=value, ...) ]
    [ AS "model_registry_uri" ]
    
    # List all registered models.
    SHOW MODELS
    
    # Describe the details of a model.
    (DESC | DESCRIBE) MODEL model_name
    
    # Drop a Model
    DROP MODEL model_name

    A ML_PREDICT function is implemented to run model inference.

    SELECT id, ML_PREDICT(model_name, col1, col2, col3) as predicted FROM table
    Definition Classes
    rikai
  • package model
  • package spark

package sql

Rikai SQL-ML extension.

Rikai offers DDL to manipulate ML Models:

CREATE MODEL model_name
[ OPTIONS (key=value, key=value, ...) ]
[ AS "model_registry_uri" ]

# List all registered models.
SHOW MODELS

# Describe the details of a model.
(DESC | DESCRIBE) MODEL model_name

# Drop a Model
DROP MODEL model_name

A ML_PREDICT function is implemented to run model inference.

SELECT id, ML_PREDICT(model_name, col1, col2, col3) as predicted FROM table
Linear Supertypes
AnyRef, Any

Inherited from AnyRef

Inherited from Any

Ungrouped