mrcsparker / flower

mlflow project with apache superset

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Flower

Flower is a sample project that integrates MLFlow with Apache Superset via PostgreSQL.

Install

> multipass shell ${your-env}

https://towardsdatascience.com/setup-mlflow-in-production-d72aecde7fef

# Install postgresql
> sudo apt install postgresql postgresql-contrib postgresql-server-dev-all

# Switch to postgres account
> sudo -u postgres psql

# Now run postgres
postgres=> CREATE DATABASE mlflow_db;
postgres=> CREATE USER mlflow_user WITH ENCRYPTED PASSWORD 'mlflow';
postgres> GRANT ALL PRIVILEGES ON DATABASE mlflow_db TO mlflow_user;

About

mlflow project with apache superset


Languages

Language:Makefile 62.5%Language:Dockerfile 30.5%Language:Python 7.1%