Skip to content

Commit

Permalink
Merge pull request #203 from kylebgorman/release
Browse files Browse the repository at this point in the history
Release v0.2.11
  • Loading branch information
kylebgorman authored Jul 3, 2024
2 parents 9bd4ff9 + b82ab43 commit 343b6f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ exclude = ["examples*"]

[project]
name = "yoyodyne"
version = "0.2.10"
version = "0.2.11"
description = "Small-vocabulary neural sequence-to-sequence models"
readme = "README.md"
requires-python = ">= 3.9, < 3.11"
Expand Down
2 changes: 1 addition & 1 deletion yoyodyne/models/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def __init__(
self.decoder = self.get_decoder()
# Saves hyperparameters for PL checkpointing.
self.save_hyperparameters(
ignore=["source_encoder", "decoder", "features_encoder"]
ignore=["source_encoder", "decoder", "expert", "features_encoder"]
)
# Logs the module names.
util.log_info(f"Model: {self.name}")
Expand Down

0 comments on commit 343b6f2

Please sign in to comment.