Search Results
https://dev.mysql.com/doc/mysql-ai/9.4/en/myai-installation-clean.html
You can replace the default port number (8000) with another number for MySQL Shell GUI web server to listen for connections. You can replace the default HTTPS port number (8443) with another number for the MySQL REST Service web server to listen to ... Installing MySQL AI requires the following steps: Install the MySQL AI ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-classification-train.html
mysql> SET @variable = 'model_handle'; Replace @variable and model_handle with your own definitions. mysql> CALL sys.ML_TRAIN('table_name', 'target_column_name', JSON_OBJECT('task', 'task_name'), model_handle); Replace table_name, ... After ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-load-model.html
You must load a machine learning model from the model catalog before running AutoML routines other than ML_TRAIN. A model remains loaded and can be called repetitively by AutoML routines until it is unloaded using the ML_MODEL_UNLOAD routine, or ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-regression-train.html
mysql> SET @variable = 'model_handle'; Replace @variable and model_handle with your own definitions. mysql> CALL sys.ML_TRAIN('table_name', 'target_column_name', JSON_OBJECT('task', 'task_name'), @variable); Replace table_name, target_column_name, ... After preparing the data for a regression model, you can train the ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-topic-modeling-train.html
mysql> SET @variable = 'model_handle'; Replace @variable and model_handle with your own definitions. mysql> CALL sys.ML_TRAIN('table_name', 'target_column_name', JSON_OBJECT('task', 'task_name'), model_handle); Replace table_name, ... After ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-training-a-forecasting-model.html
mysql> SET @variable = 'model_handle'; Replace @variable and model_handle with your own definitions. mysql> CALL sys.ML_TRAIN('table_name', 'target_column_name', JSON_OBJECT('task', 'task_name'), model_handle); Replace table_name, ... After ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-training-a-recommendation-model.html
mysql> SET @variable = 'model_handle'; Replace @variable and model_handle with your own definitions. mysql> CALL sys.ML_TRAIN('table_name', 'target_column_name', JSON_OBJECT('task', 'task_name'), model_handle); Replace table_name, ... After ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-training.html
mysql> SET @variable = 'model_handle'; Replace @variable and model_handle with your own definitions. mysql> CALL sys.ML_TRAIN('table_name', 'target_column_name', JSON_OBJECT('task', 'task_name'), @variable); Replace table_name, target_column_name, ... Run the ML_TRAIN routine on a training dataset to produce a trained machine learning ...
https://dev.mysql.com/doc/workbench/en/wb-design-modeling-interface.html
Both models derive from MySQL database samples (see https://dev.mysql.com/doc/index-other.html), which you can download and use to explore the MySQL Workbench modeling interface. Figure 9.1 Data Models on the Home Screen The sakila database sample ... MySQL Workbench represents each active data model as an icon in the models view of the home screen ...
https://dev.mysql.com/doc/workbench/en/wb-forward-engineering-sql-scripts.html
Forward engineering enables you to create a script of your database model. You may export a script to alter an existing database or create a new database. The script to create a database is similar to the one created using the mysqldump db_name ...