Skip to content

Commit df28f25

Browse files
committed
fuck wandb
1 parent 8c0457a commit df28f25

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

ml_research_tools/exp/wandb_downloader_tool.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,7 @@ def process_run(self, run: WandbRun, output_dir: str) -> None:
280280
output_dir: Directory where the log file will be saved
281281
"""
282282
run.load_full_data()
283+
run.load()
283284

284285
# Sanitize the run name for use in filenames
285286
sanitized_name = self.sanitize_filename(run.name)
@@ -320,7 +321,7 @@ def process_run(self, run: WandbRun, output_dir: str) -> None:
320321

321322
# Extract the history of the run as a dataframe
322323
try:
323-
history = run.history(pandas=True)
324+
history = run.history(pandas=True, samples=None)
324325
except Exception as e:
325326
self.logger.warning(f"Failed to retrieve history for run {run.name}/{run.id}: {e}")
326327
return

0 commit comments

Comments
 (0)