You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Weights & Biases logging to:
- log the llm responses in a file and in a W&B Table to explore
- Keep track of progress of llm responses progress (helpful during long
llm response queries)
- log the ast evaluation accuracy of the logged responses
parser.add_argument("--output_file", type=str, default=None, help="the output file this script writes to")
103
107
parser.add_argument("--question_data", type=str, default=None, help="path to the questions data file")
104
108
parser.add_argument("--api_name", type=str, default=None, help="this will be the api dataset name you are testing, only support ['torchhub', 'tensorhun', 'huggingface'] now")
109
+
parser.add_argument("--use_wandb", action='store_true', help="pass this argument to turn on Weights & Biases logging of the LLM responses")
0 commit comments