Skip to content

Commit

Permalink
Add End2EndDomainModule to __init__
Browse files Browse the repository at this point in the history
  • Loading branch information
bdvllrs committed Sep 19, 2024
1 parent 64e69a1 commit 9976918
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion shimmer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
ContrastiveLossType,
contrastive_loss,
)
from shimmer.modules.domain import DomainModule, LossOutput
from shimmer.modules.domain import DomainModule, End2EndDomainModule, LossOutput
from shimmer.modules.global_workspace import (
GlobalWorkspace2Domains,
GlobalWorkspaceBase,
Expand Down Expand Up @@ -79,6 +79,7 @@
"pretrained_global_workspace",
"LossOutput",
"DomainModule",
"End2EndDomainModule",
"GWDecoder",
"GWEncoder",
"GWEncoderLinear",
Expand Down
3 changes: 2 additions & 1 deletion shimmer/modules/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
ContrastiveLossType,
contrastive_loss,
)
from shimmer.modules.domain import DomainModule, LossOutput
from shimmer.modules.domain import DomainModule, End2EndDomainModule, LossOutput
from shimmer.modules.global_workspace import (
GlobalWorkspace2Domains,
GlobalWorkspaceBase,
Expand Down Expand Up @@ -59,6 +59,7 @@
"pretrained_global_workspace",
"LossOutput",
"DomainModule",
"End2EndDomainModule",
"GWDecoder",
"GWEncoder",
"GWEncoderLinear",
Expand Down

0 comments on commit 9976918

Please sign in to comment.