Search Results
https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/devapi-users-introduction.html
The X DevAPI is implemented by MySQL Shell and MySQL Connectors that support X Protocol. For more background information and instructions on how to install and get started using X DevAPI, see Using MySQL as a Document Store. For quick-start ... This ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-python/en/devapi-users-introduction.html
The X DevAPI is implemented by MySQL Shell and MySQL Connectors that support X Protocol. For more background information and instructions on how to install and get started using X DevAPI, see Using MySQL as a Document Store. For quick-start ... This ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-group-by-modifiers.html
In the MySQL HeatWave secondary engine, the GROUP BY clause permits the following modifiers: A CUBE modifier in addition to the WITH ROLLUP modifier. (Available in MySQL HeatWave only.) A ROLLUP modifier as a preferred alternative to the WITH ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-metadata-queries-change-propagation.html
As of MySQL 9.2.1, TRANSACTIONAL indicates that change propagation is enabled for the table. In previous versions of MySQL, RAPID_LOAD_POOL_TRANSACTIONAL indicates that change propagation is enabled for the table.
https://dev.mysql.com/doc/heatwave/en/mys-hw-resource-principal.html
For MySQL HeatWave Lakehouse to access Object Storage, you must define a policy which grants the dynamic group's resources access to buckets and their contents in a specific compartment. Create a new dynamic group or update a dynamic group's ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-uniform-resource-identifiers.html
As of MySQL 9.3.1, (supported in MySQL HeatWave on OCI only) MySQL HeatWave Lakehouse lets you use Uniform Resource Identifiers (URI) in a unified way to specify Object Storage resources for loading data into MySQL HeatWave Lakehouse. Before You ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-classification-generate-prediction.html
mysql> CALL sys.ML_MODEL_LOAD(@model, NULL); The following example uses the model handle. mysql> CALL sys.ML_MODEL_LOAD('classification_use_case', NULL); Make predictions for the test dataset by using the ML_PREDICT_TABLE routine. mysql> CALL ...To ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-classification-score.html
mysql> CALL sys.ML_MODEL_LOAD(@model, NULL); The following example uses the model handle. mysql> CALL sys.ML_MODEL_LOAD('classification_use_case', NULL); Score the model with the ML_SCORE routine and use the accuracy metric. mysql> CALL ... After ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-classification-train.html
mysql> SET @variable = 'model_handle'; Replace @variable and model_handle with your own definitions. For example: mysql> SET @model='classification_use_case'; The model handle is set to classification_use_case. mysql> CALL sys.ML_TRAIN('table_name', ... After preparing the data for a classification model, you can train the ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-model-quality.html
MySQL HeatWave AutoML supports a variety of scoring metrics to help you understand how your model performs across a series of benchmarks. mysql> CALL sys.ML_TRAIN('census_data.census_train', 'revenue', JSON_OBJECT('task', 'classification'), ...