-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathconfig.py
More file actions
24 lines (18 loc) · 881 Bytes
/
config.py
File metadata and controls
24 lines (18 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# (Required) NeMo Microservices URLs
NDS_URL = "http://data-store.test" # Data Store
NEMO_URL = "http://nemo.test" # Customizer, Entity Store, Evaluator, Guardrails
NIM_URL = "http://nim.test" # NIM
# (Required) Hugging Face Token
HF_TOKEN = ""
# (Optional) To observe training with WandB
WANDB_API_KEY = ""
# (Optional) Modify if you've configured a NeMo Data Store token
NDS_TOKEN = "token"
# (Optional) Use a dedicated namespace and dataset name for tutorial assets
NMS_NAMESPACE = "xlam-tutorial-ns"
DATASET_NAME = "xlam-ft-dataset"
# (Optional) Configure the base model. Must be one supported by the NeMo Customizer deployment!
BASE_MODEL = "meta/llama-3.2-1b-instruct"
BASE_MODEL_VERSION = "v1.0.0+80GB"
# (Optional) Configure the custom model. Ensure the custom model name can be pass to the other notebooks
CUSTOM_MODEL = f"{NMS_NAMESPACE}/llama-3.2-1b-xlam-run1@v1"