Skip to content

Commit

Permalink
Remove unnecessary deepcopy in evaluation_tracker
Browse files Browse the repository at this point in the history
  • Loading branch information
albertvillanova authored Dec 18, 2024
1 parent 0977fde commit b9447ae
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/lighteval/logging/evaluation_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,7 @@ def save(self) -> None:
date_id = datetime.now().isoformat().replace(":", "-")

# We first prepare data to save
config_general = copy.deepcopy(self.general_config_logger)
config_general = asdict(config_general)
config_general = asdict(self.general_config_logger)
# We remove the config from logging, which contains context/accelerator objects
config_general.pop("config")

Expand Down

0 comments on commit b9447ae

Please sign in to comment.