-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathconfig.yml
executable file
·29 lines (27 loc) · 1.19 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
config:
AZURE_SUBSCRIPTION_ID: "<YOUR-SUBSCRIPTION-ID>" # Please modify to your subscription
AZURE_RESOURCE_GROUP: "<YOUR-RESOURCE-GROUP>" # Please modify to your Azure resource group
AZURE_WORKSPACE: "<YOUR-AZURE-WORKSPACE>" # Please modify to your Azure workspace
AZURE_DATA_NAME: "hf-ultrachat" # Please modify to your AzureML data name
DATA_DIR: "./dataset"
CLOUD_DIR: "./cloud"
HF_MODEL_NAME_OR_PATH: "microsoft/Phi-3.5-mini-instruct"
IS_DEBUG: true
USE_LOWPRIORITY_VM: true
train:
azure_env_name: "llm-finetuning-2024-11-05" # Please modify to your AzureML env name
azure_compute_cluster_name: "gpu-cluster-a100"
azure_compute_cluster_size: "Standard_NC24ads_A100_v4" # 1 x A100 (80GB)
epoch: 1
train_batch_size: 8
eval_batch_size: 8
model_dir: "./outputs"
wandb_api_key: ""
wandb_project: ""
wandb_run_name: ""
serve:
azure_env_name: "llm-serving-2024-11-05" # Please modify to your AzureML env name
azure_model_name: "phi3-finetune-2024-11-05" # Please modify to your AzureML model name
azure_endpoint_name: "phi3-endpoint-2024-11-05"
azure_deployment_name: "phi3-blue"
azure_serving_cluster_size: "Standard_NC6s_v3"