Skip to content

Commit

Permalink
Do not store duplicate, shared parameters (#792)
Browse files Browse the repository at this point in the history
  • Loading branch information
fhieber authored Feb 27, 2020
1 parent 7e715a7 commit b08eb14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sockeye/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def save_parameters(self, fname: str):
Saves model parameters to file.
:param fname: Path to save parameters to.
"""
super().save_parameters(fname)
super().save_parameters(fname, deduplicate=True)
logging.info('Saved params to "%s"', fname)

def load_parameters(self,
Expand Down

0 comments on commit b08eb14

Please sign in to comment.