使用Weights & Biases对ChatGPT-3.5和GPT-4进行微调
注意: 运行此Colab需要一个OpenAI API密钥。
如果您使用OpenAI的API来对ChatGPT-3.5进行微调,现在可以使用W&B集成来跟踪实验、模型和数据集在您的中央仪表板中。
只需一行代码:openai wandb sync
查看Weights & Biases文档中的OpenAI部分,获取集成的完整详情。
!pip install -Uq openai tiktoken datasets tenacity wandb
# 在该PR合并后删除:https://github.com/openai/openai-python/pull/590,并在OpenAI发布后进行。
!pip uninstall -y openai -qq \
&& pip install git+https://github.com/morganmcg1/openai-python.git@update_wandb_logger -qqq