Search Results
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-genai-generate-embeddings.html
For example: mysql> SELECT sys.ML_EMBED_ROW(@text, JSON_OBJECT("model_id", "all_minilm_l12_v2")) into @text_embedding; The routine returns a VECTOR, and this command stores it in the @text_embedding variable. This section describes how to generate ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-genai-update-vector-store.html
To append a new file to the vector store table, perform the following steps: Check that the vector embeddings are loaded in the vector store table you want to update: mysql> SELECT COUNT(*) FROM VectorStoreTableName; Replace VectorStoreTableName ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-mysqlai-ml-embed-row.html
This topic contains the following sections: ML_EMBED_ROW Syntax Syntax Examples See Also ML_EMBED_ROW Syntax mysql> SELECT sys.ML_EMBED_ROW('Text'[, options]); options: JSON_OBJECT(keyvalue[, keyvalue] ...) keyvalue: { 'model_id', {'ModelID'} ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-mysqlai-ml-explain.html
Running the ML_EXPLAIN routine on a model and dataset trains a prediction explainer and model explainer, and adds a model explanation to the model catalog. See Generate Model Explanations and Generate Prediction Explanations to learn more.
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-mysqlai-ml-model-active.html
Use the ML_MODEL_ACTIVE routine to check which models are loaded and active for which users. All active users and models share the amount of memory defined by the shape, and it might be necessary to schedule users. ML_MODEL_ACTIVE Syntax mysql> ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-mysqlai-ml-model-import.html
Use the ML_MODEL_IMPORT routine to import a pre-trained model into your model catalog. To learn how to use ML_MODEL_IMPORT to share models, see Grant Other Users Access to a Model. ML_MODEL_IMPORT Overview MySQL AI supports the import of AutoML and ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-mysqlai-ml-score.html
The metric selected must be compatible with the task type used for training the model. mysql> CALL sys.ML_SCORE('census_data.census_train', 'revenue', 'census_data.census_train_admin_1745439945171', 'balanced_accuracy', @score, NULL); Query OK, 0 ...
https://dev.mysql.com/doc/workbench/en/wb-admin-server-management.html
MySQL Connection Navigator The Navigator area of the sidebar panel has an Administration secondary tab (previously named Management) with functionality to monitor and configure your selected MySQL connection. With the Administration tab selected, ...
https://dev.mysql.com/doc/workbench/en/wb-develop-sql-editor-results.html
The results area of the screen shows the results from executed statements. If the script contains multiple statements, a result subtab will be generated for each statemented that returned results. The following figure shows a single subtab and ...
https://dev.mysql.com/doc/workbench/en/wb-history-palette.html
You can select multiple contiguous entries by pressing the Shift key and clicking the entries you wish to copy. Use the History palette to review the actions that you have taken. Left-clicking an entry opens a pop-up menu with the item, Copy ...