Search



Search Results
Displaying 281 to 290 of 1932 total results
https://dev.mysql.com/doc/mysql-secure-deployment-guide/8.0/en/secure-deployment-overview.html
The MySQL 8.0 Secure Deployment Guide documents procedures for deploying a Linux-generic binary distribution of MySQL Enterprise Edition Server with features for implementing and managing the security of your MySQL installation. Features required ...Enabling FIPS (Federal Information Processing Standards) mode, which imposes conditions on cryptographic operations such as restrictions on acceptable encryption algorithms or requirements for longer key lengths, is not covered in this ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/working-with-existing-collections.html
In order to retrieve a Collection object for an existing collection stored in the database call the getCollection() function from a Schema object. // Get a collection object for 'my_collection' var myColl = db.getCollection('my_collection'); The ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-python/en/working-with-existing-collections.html
In order to retrieve a Collection object for an existing collection stored in the database call the getCollection() function from a Schema object. # Get a collection object for 'my_collection' myColl = db.get_collection('my_collection') The ...
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-load-model.html
You must load a machine learning model from the model catalog into MySQL HeatWave before running MySQL HeatWave AutoML routines other than ML_TRAIN. A model remains loaded and can be called repetitively by MySQL HeatWave AutoML routines until it is ...For more information, see Grant Other Users Access to a ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-ml-train.html
MySQL 9.0.0 introduces changes to how MySQL HeatWave AutoML stores models. Before training models, make sure to review the following: Additional MySQL HeatWave AutoML Requirements MySQL HeatWave AutoML Privileges Supported Data Types for MySQL ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-model-handles.html
You must use model handles to run MySQL HeatWave AutoML routines. In the following example, @census_model is defined as the model handle session variable with no set model handle name: mysql> CALL sys.ML_TRAIN('heatwaveml_bench.census_train', ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-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/heatwave/en/mys-hwaml-regression-train.html
mysql> SET @variable = 'model_handle'; Replace @variable and model_handle with your own definitions. For example: mysql> SET @model='regression_use_case'; The model handle is set to regression_use_case. mysql> CALL sys.ML_TRAIN('table_name', ...
Displaying 281 to 290 of 1932 total results