https://github.com/mrcsparker/flower
mlflow project with apache superset
https://github.com/mrcsparker/flower
Last synced: 2 months ago
JSON representation
mlflow project with apache superset
- Host: GitHub
- URL: https://github.com/mrcsparker/flower
- Owner: mrcsparker
- Created: 2021-11-15T00:58:20.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-18T23:54:28.000Z (over 3 years ago)
- Last Synced: 2025-02-14T02:22:55.304Z (4 months ago)
- Language: Makefile
- Size: 89.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flower
Flower is a sample project that integrates MLFlow with Apache Superset via PostgreSQL.
## Install
```sh
> multipass shell ${your-env}
```https://towardsdatascience.com/setup-mlflow-in-production-d72aecde7fef
```sh
# 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;
```