-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
init: code skeleton + project goals in readme
- Loading branch information
1 parent
b8218c6
commit dc5a6d6
Showing
6 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
# one-click-mlflow | ||
A tool to deploy a mostly serverless MLflow on a GCP project with one command | ||
|
||
## Goals | ||
|
||
The project's deliverables are | ||
- MLflow tracking server on Cloud Run | ||
- Artifacts on GCS | ||
- Metrics backend on Cloud SQL (MySQL) | ||
- Terraformed infrastructure | ||
- A list of all the GCP APIs that need to be enabled | ||
- A list of all the necessary GCP permissions to run the deployment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
from lib.entrypoint import run | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
def run(): | ||
raise NotImplementedError() |
Empty file.