Llama2 - Logging
We will be using Weights and Biases to log and monitor our fine tuning runs.
If you are new to Weights and Biases, please take the time to review their quickstart guide:
A run is the basic building block of W&B. You will use them often to track metrics, create logs, create jobs.
Once you have created a Weights and Biases account, login to your Weights and Biases account by entering the following command at the command prompt:
wandb login
You will be asked to enter your Weights and Biases account details as per below:
Username:
Password:
API Token:
Configuration of Logging Component
Project
The project naming convention can be simplistic but informational. Name your project whatever you like.
Entity
The entity is simply <your-organisation>.
The configuration file should look like the below script:
wandb_project: <your project name>
wandb_entity: <your-organisation>
wandb_name: Set the name of your wandb run
wandb_run_id: Set the ID of your wandb run
Last updated
Was this helpful?