CREATE MODEL mindsdb.mlflow_model
PREDICT target
USING
engine = 'mlflow',
model_name = 'model_folder_name', -- replace the model_folder_name variable with a real value
mlflow_server_url = 'http://0.0.0.0:5001/', -- match the port number with the MLflow server (point 2 in the previous section)
mlflow_server_path = 'sqlite:////path/to/mlflow.db', -- replace the path with a real value (here we use the sqlite database)
predict_url = 'http://localhost:5000/invocations'; -- match the port number that serves the trained model (point 3 in the previous section)