Search Results
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-shell-plugins-create.html
The value of this variable replaces %AppData%\MySQL\mysqlsh\ on Windows or ~/.mysqlsh/ on Unix. MySQL Shell plugins can be used to contain functions that are registered as MySQL Shell reports (see Section 11.1, “Reporting with MySQL Shell”), ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-shell-read-replicas-creating.html
clone: Use to completely replace the state of the target instance with a full snapshot of another cluster member before distributed recovery starts. Create Read Replicas using addReplicaInstance(): Cluster.addReplicaInstance(instance, [options]) ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-shell-utilities-dump-binlogs.html
Replace namespace with the Object Storage namespace and region with your region identifier. This utility dumps binary logs generated since a specific point in time to the given local or remote directory. The starting point can be automatically ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-shell-utilities-load-binlogs.html
Replace namespace with the Object Storage namespace and region with your region identifier. This utility enables you to load a binary log dump from local or cloud storage. The utility's syntax is: util.loadBinlogs(Url[, options]) Url: A local file ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-shell-utilities-table-export.html
Replace namespace with the Object Storage namespace and region with your region identifier. MySQL Shell's table export utility util.exportTable() exports a MySQL relational table into a data file, either on the local server or in an Oracle Cloud ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-automl.html
Oracle AutoML replaces the laborious and time consuming tasks of the data analyst, whose workflow is as follows: Selecting a model from a large number of viable candidate models. The AutoML ML_TRAIN routine leverages Oracle AutoML technology to ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-classification-generate-explanation.html
mysql> CALL sys.ML_EXPLAIN_TABLE(table_name, model_handle, output_table_name, [options]); Replace table_name, model_handle, and output_table_name with your own values. After training a classification model, you can query the default model ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-classification-generate-prediction.html
mysql> CALL sys.ML_PREDICT_TABLE(table_name, model_handle, output_table_name), [options]); Replace table_name, model_handle, and output_table_name with your own values. mysql> CALL sys.ML_PREDICT_TABLE('classification_data.Loan_Testing', @model, ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-classification-score.html
mysql> CALL sys.ML_SCORE(table_name, target_column_name, model_handle, metric, score, [options]); Replace table_name, target_column_name, model_handle, metric, score with your own values. After generating predictions and explanations, you can score ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-explainers.html
After the ML_TRAIN routine, use the ML_EXPLAIN routine to train model explainers for AutoML. By default, the ML_TRAIN routine trains the Permutation Importance model explainer. Feature importance is presented as a value ranging from -1 to 1. A ...