adds second option tu running mlflow run

This commit is contained in:
Tomasz Dłuski
2020-08-23 23:28:50 +02:00
parent 0272e2ba09
commit 09127e4af4
2 changed files with 7 additions and 1 deletions

3
.gitignore vendored
View File

@@ -146,4 +146,5 @@ Temporary Items
node_modules/ node_modules/
.localstack/ .localstack/
dbdata/ dbdata/
s3/ s3/
outputs/

View File

@@ -51,6 +51,11 @@ source ~/.bashrc
MLFLOW_S3_ENDPOINT_URL=http://localhost:9000/mlflow MLFLOW_TRACKING_URI=http://localhost:5000 mlflow run git@github.com:databricks/mlflow-example.git -P alpha=0.5 MLFLOW_S3_ENDPOINT_URL=http://localhost:9000/mlflow MLFLOW_TRACKING_URI=http://localhost:5000 mlflow run git@github.com:databricks/mlflow-example.git -P alpha=0.5
``` ```
Optionally you can run
```shell
MLFLOW_S3_ENDPOINT_URL=http://localhost:9000/mlflow MLFLOW_TRACKING_URI=http://localhost:5000 python ./quickstart/mlflow_tracking.py
```
8. To make the setting permament move the MLFLOW_S3_ENDPOINT_URL and MLFLOW_TRACKING_URI into your .bashrc 8. To make the setting permament move the MLFLOW_S3_ENDPOINT_URL and MLFLOW_TRACKING_URI into your .bashrc
```bash ```bash