Machine Learning with MindsDB
Learn how to integrate MindsDB with MariaDB to train and query machine learning models directly using standard SQL commands.
Overview
Installation
CREATE USER mindsdb@localhost;
SET PASSWORD FOR mindsdb@localhost=PASSWORD("password");GRANT FILE ON *.* TO mindsdb@localhost;
GRANT ALL ON mindsdb.* TO mindsdb@localhost;python -m mindsdb --config=$CONFIG_PATH --api=http,mysqlUsage
Last updated
Was this helpful?

