Search



Search Results
Displaying 3231 to 3240 of 5414 total results
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-regression-prepare.html
Preparing Data To prepare the data for the regression model: Connect to the MySQL Server. mysql> CREATE DATABASE regression_data; mysql> USE regression_data; Create the table to insert the sample data into. mysql> CREATE TABLE house_price_training ( ... This topic describes how to prepare the data to use for a regression machine learning ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-regression-score.html
mysql> CALL sys.ML_MODEL_LOAD(@model, NULL); The following example uses the model handle. mysql> CALL sys.ML_MODEL_LOAD('regression_use_case', NULL); Score the model with the ML_SCORE routine and use the r2 metric. mysql> CALL ... After generating ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-using-a-forecasting-model.html
mysql> CALL sys.ML_MODEL_LOAD(@model, NULL); The following example uses the model handle. mysql> CALL sys.ML_MODEL_LOAD('forecasting_use_case', NULL); Make predictions for the test dataset by using the ML_PREDICT_TABLE routine. mysql> CALL ...To ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-using-a-recommendation-model-items-to-users.html
mysql> CALL sys.ML_MODEL_LOAD(@model, NULL); The following example uses the model handle. mysql> CALL sys.ML_MODEL_LOAD('recommendation_use_case', NULL); Make predictions for the test dataset by using the ML_PREDICT_TABLE routine. mysql> CALL ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-using-a-recommendation-model-ratings-rankings.html
mysql> CALL sys.ML_MODEL_LOAD(@model, NULL); The following example uses the model handle. mysql> CALL sys.ML_MODEL_LOAD('recommendation_use_case', NULL); Make predictions for the test dataset by using the ML_PREDICT_TABLE routine. mysql> CALL ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-using-a-recommendation-model-similar-items.html
mysql> CALL sys.ML_MODEL_LOAD(@model, NULL); The following example uses the model handle. mysql> CALL sys.ML_MODEL_LOAD('recommendation_use_case', NULL); Make predictions for the test dataset by using the ML_PREDICT_TABLE routine. mysql> CALL ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-using-a-recommendation-model-similar-users.html
mysql> CALL sys.ML_MODEL_LOAD(@model, NULL); The following example uses the model handle. mysql> CALL sys.ML_MODEL_LOAD('recommendation_use_case', NULL); Make predictions for the test dataset by using the ML_PREDICT_TABLE routine. mysql> CALL ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-using-a-recommendation-model-users-to-items.html
mysql> CALL sys.ML_MODEL_LOAD(@model, NULL); The following example uses the model handle. mysql> CALL sys.ML_MODEL_LOAD('recommendation_use_case', NULL); Make predictions for the test dataset by using the ML_PREDICT_TABLE routine. mysql> CALL ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-genai-overview.html
The GenAI feature of MySQL AI lets you communicate with unstructured data using natural-language queries. GenAI Chat also provides a graphical interface integrated with the Visual Studio Code plugin for MySQL Shell. Accelerated Vector-Based Query ...It uses a familiar SQL interface which makes it is easy to use for content generation, summarization, and retrieval-augmented generation ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-mysqlai-ml-model-load.html
ML_MODEL_LOAD Syntax mysql> CALL sys.ML_MODEL_LOAD(model_handle, user); ML_MODEL_LOAD Parameters Set the following parameters. mysql> CALL sys.ML_MODEL_LOAD('ml_data.iris_train_user1_1636729526', NULL); An example that specifies a session variable ... The ML_MODEL_LOAD routine loads a model from the model ...
Displaying 3231 to 3240 of 5414 total results