Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ThinamXx committed Aug 27, 2022
1 parent 44be108 commit 6722231
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 4 deletions.
1 change: 1 addition & 0 deletions .vscode/configurationCache.log
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"buildTargets":[],"launchTargets":[],"customConfigurationProvider":{"workspaceBrowse":{"browsePath":[]},"fileIndex":[]}}
6 changes: 6 additions & 0 deletions .vscode/dryrun.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
make --dry-run --always-make --keep-going --print-directory
make: Entering directory '/home/thinam/Desktop/MLOps'
make: Leaving directory '/home/thinam/Desktop/MLOps'

make: *** No targets specified and no makefile found. Stop.

3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"makefile.extensionOutputFolder": "./.vscode"
}
8 changes: 4 additions & 4 deletions ML Engineering MLFlow/02. Data Science Workbench/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ build:
JUPYTER_TARGET=${JUPYTER_TARGET} JUPYTER_USERNAME=${JUPYTER_USERNAME} \
MLFLOW_VERSION=${MLFLOW_VERSION} \
POSTGRES_UID=${POSTGRES_UID} POSTGRES_GID=${POSTGRES_GID} \
docker-compose build ${BUILD_OPTS}
docker compose build ${BUILD_OPTS}

${MLFLOW_ARTIFACT_STORE}:
mkdir -p ${MLFLOW_ARTIFACT_STORE}
Expand All @@ -141,7 +141,7 @@ up: ${MLFLOW_ARTIFACT_STORE} ${POSTGRES_STORE}
JUPYTER_UID=${JUPYTER_UID} JUPYTER_USERNAME=${JUPYTER_USERNAME} \
JUPYTER_ENABLE_LAB=${JUPYTER_ENABLE_LAB} \
POSTGRES_UID=${POSTGRES_UID} POSTGRES_GID=${POSTGRES_GID} \
docker-compose up ${UP_OPTS}
docker compose up ${UP_OPTS}

run: ${MLFLOW_ARTIFACT_STORE} ${POSTGRES_STORE}
JUPYTER_BASE_IMAGE=${JUPYTER_BASE_IMAGE} JUPYTER_BASE_VERSION=${JUPYTER_BASE_VERSION} \
Expand All @@ -150,10 +150,10 @@ run: ${MLFLOW_ARTIFACT_STORE} ${POSTGRES_STORE}
JUPYTER_UID=${JUPYTER_UID} JUPYTER_USERNAME=${JUPYTER_USERNAME} \
JUPYTER_ENABLE_LAB=${JUPYTER_ENABLE_LAB} \
POSTGRES_UID=${POSTGRES_UID} POSTGRES_GID=${POSTGRES_GID} \
docker-compose run ${RUN_OPTS}
docker compose run ${RUN_OPTS}

down:
docker-compose down ${DOWN_OPTS}
docker compose down ${DOWN_OPTS}
down-all: DOWN_OPTS:=${DOWN_ALL_OPTS}
down-all: down

Expand Down
Empty file.
Empty file.
Binary file added MLOps Images/Day 8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6722231

Please sign in to comment.