From 5a21a8ef9444f08cca6eb30426ec09066c4869b0 Mon Sep 17 00:00:00 2001 From: Jose Fajardo Date: Fri, 13 Jan 2023 16:34:09 -0500 Subject: [PATCH] Fixed API URL for W&B sync --- openai/wandb_logger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openai/wandb_logger.py b/openai/wandb_logger.py index ba650d1fe4..96d6adcb17 100644 --- a/openai/wandb_logger.py +++ b/openai/wandb_logger.py @@ -111,7 +111,7 @@ def _log_fine_tune( # check results are present try: results_id = fine_tune["result_files"][0]["id"] - results = File.download(id=results_id).decode("utf-8") + results = File.download(id=results_id + "/content").decode("utf-8") except: if show_individual_warnings: print(f"Fine-tune {fine_tune_id} has no results and will not be logged")