All Projects â†’ Netflix â†’ metaflow-ui

Netflix / metaflow-ui

Licence: Apache-2.0 license
🎨 UI for monitoring your Metaflow executions!

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to metaflow-ui

monai-deploy
MONAI Deploy aims to become the de-facto standard for developing, packaging, testing, deploying and running medical AI applications in clinical production.
Stars: ✭ 56 (-77.33%)
Mutual labels:  ml-platform
New-ML-Data-Science-Framework-Tutorials-By-EJ
Internet's Most Popular Tutorials on Fresh-off-the-shelf ML & Data Science Technologies, Authored by Yours Truly.
Stars: ✭ 18 (-92.71%)
Mutual labels:  metaflow
metaflowbot
Slack bot for monitoring your Metaflow flows!
Stars: ✭ 22 (-91.09%)
Mutual labels:  metaflow
Bentoml
Model Serving Made Easy
Stars: ✭ 3,064 (+1140.49%)
Mutual labels:  ml-platform
Metaflow
🚀 Build and manage real-life data science projects with ease!
Stars: ✭ 5,108 (+1968.02%)
Mutual labels:  ml-platform

Metaflow UI

Build GitHub release

Metaflow UI is a tool to monitor Metaflow workflows in real-time.

Getting started

Using Metaflow UI requires Metaflow Service for now.

To setup a local development environment, see docs/README.md.

Deploying the UI

Deploying Metaflow UI requires setting up a UI service (which is different from the Metaflow service but uses the same backing database). To deploy the UI service, follow instructions at Metaflow UI Service.

Docker support

Dockerfile provides support for an nginx container hosting the production build of the application.

# Build Docker image
$ docker build --tag metaflow-ui:latest .
# Run Docker container on port 3000
$ docker run -p 3000:3000 metaflow-ui:latest
# Run Docker container using custom API endpoint
$ docker run -p 3000:3000 -e METAFLOW_SERVICE=http://custom-ui-backend/api metaflow-ui:latest

For example, when used with a locally deployed Metaflow UI Service, the UI can be launched with

docker run -p 3000:3000 -e METAFLOW_SERVICE=http://localhost:8083/ metaflow-ui:latest

Dockerfile also supports the following environment variables to inject content into the UI's index.html:

  • METAFLOW_HEAD - Inject content to head element
  • METAFLOW_BODY_BEFORE - Inject content at the beginning of body element
  • METAFLOW_BODY_AFTER - Inject content at the end of body element

Use cases for these variables range from additional meta tags to analytics script injection.

Example on how to add a keyword meta tag to Metaflow UI:

METAFLOW_HEAD='<meta name="keywords" content="metaflow" />'

Plugins development

See docs/plugin-system.md to get started with plugins development.

Documentation

See docs/README.md to learn more.

General Metaflow documentation available here:

Contributing

We welcome contributions to Metaflow. Please see our contribution guide for more details.

Get in Touch

There are several ways to get in touch with us:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].