From d3978f7ac5c1edf2ac99e564b5c93c8c885d1493 Mon Sep 17 00:00:00 2001 From: fwhigh Date: Sun, 16 May 2021 19:27:30 -0700 Subject: [PATCH] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 141b0af..fb422dc 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,9 @@ Convenience utilities for common machine learning tasks on Metaflow ## Quickstart -You can run the tournament immediately like this. -First, install a convenience package I'm calling `metaflow-helper`. +You can run the model selection tournament immediately like this. +Install a convenience package called metaflow-helper. + ```bash git clone https://github.com/fwhigh/metaflow-helper.git @@ -19,19 +20,18 @@ cd metaflow-helper python -m pip install . ``` -Second, run the Metaflow tournament job. -This one needs a few more packages, including Metaflow itself, -which `metaflow-helper` doesn't currently require. +Then run a Metaflow example. +Examples need a few more packages, including Metaflow itself, which metaflow-helper doesn’t currently require. ```bash python -m pip install -r example-requirements.txt python examples/model-selection/train.py run ``` -Visualize the flow. +You can visualize the example flow. ```bash -python examples/model-selection/train.py output-dot | dot -Grankdir=TB -Tpng -o flow.pngflow.png +python examples/model-selection/train.py output-dot | dot -Grankdir=TB -Tpng -o model-selection-flow.png ``` ## Release procedure