package rikai
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- rikai
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Package Members
- 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_PREDICTfunction is implemented to run model inference.SELECT id, ML_PREDICT(model_name, col1, col2, col3) as predicted FROM table
Type Members
- trait Indexer extends AnyRef
Indexers
- implicit class RikaiReader extends AnyRef
- class RikaiRelation extends BaseRelation with InsertableRelation with PrunedFilteredScan with PrunedScan with TableScan with Logging
- class RikaiRelationProvider extends RelationProvider with CreatableRelationProvider with DataSourceRegister
Spark Relation Provider (source and sink) for "rikai" feature store
- implicit class RikaiWriter[T] extends AnyRef
Value Members
- object FilterUtils
Handle Spark Filters