Skip to content

Commit

Permalink
fix: Default values
Browse files Browse the repository at this point in the history
  • Loading branch information
iusztinpaul committed Jun 1, 2024
1 parent b443f46 commit 6353fcd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion course/module-4/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ help:

list: help

install:
install: # Install the project dependencies.
@echo "Installing ..."

PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring poetry install
Expand Down
2 changes: 1 addition & 1 deletion course/module-4/finetuning/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class AppSettings(BaseSettings):
COMET_PROJECT: str = ""

DATASET_ARTIFACT_NAME: str = "posts-instruct-dataset"
FINE_TUNED_LLM_TWIN_MODEL_TYPE: str = "decodingml/llm-twin:1.1.0"
FINE_TUNED_LLM_TWIN_MODEL_TYPE: str = "decodingml/llm-twin:1.0.0"
CONFIG_FILE: str = "./finetuning/config.yaml"

MODEL_SAVE_DIR: str = "./training_pipeline_output"
Expand Down
9 changes: 7 additions & 2 deletions course/module-5/Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
help:
@grep -E '^[a-zA-Z0-9 -]+:.*#' Makefile | sort | while read -r l; do printf "\033[1;32m$$(echo $$l | cut -f 1 -d':')\033[00m:$$(echo $$l | cut -f 2- -d'#')\n"; done

install: # Install the project dependencies.
@echo "Installing ..."

PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring poetry install

deploy-llm-microservice: # Deploy the Qwak model.
qwak models deploy realtime --model-id "llm_twin" --instance "gpu.a10.2xl" --timeout 50000 --replicas 2 --server-workers 2
poetry run qwak models deploy realtime --model-id "llm_twin" --instance "gpu.a10.2xl" --timeout 50000 --replicas 2 --server-workers 2

undeploy-llm-microservice: # Deploy the Qwak model.
qwak models undeploy --model-id "llm_twin"
poetry run qwak models undeploy --model-id "llm_twin"

call-inference-pipeline: # Call the inference pipeline.
poetry run python main.py
Expand Down

0 comments on commit 6353fcd

Please sign in to comment.