머신러닝 실험을 추적하고 시각화하는 데 사용하는 툴

# wandb.init(
# entity="language_confusion",
# project="language_confusion",
# name=f"{new_model_id.split('/')[-1]}_{temperature}_{today}",
# config={
# "model": new_model_id,
# "temperature": temperature,
# "sampling": sampling,
# "logit_processor": logit_processor,
# "weight_masking": weight_masking,
# "system_prompt": system_prompt
# }
# )
# wandb.log({
# "elapsed_time_sec": elapsed_time,
# "num_korean_only": true_count,
# "num_other_languages": total - true_count,
# "accuracy": true_count / total
# })