This repository has been archived by the owner on Jan 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
organize models, rename MMT take two
- Loading branch information
1 parent
870d556
commit 117a359
Showing
2 changed files
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
##### | ||
# NMT | ||
##### | ||
from .nmt import NMT | ||
from .tfnmt import TransformerNMT | ||
|
||
# MMT with FC-style global features | ||
from .mnmt import MultimodalNMT | ||
|
||
# Spatial features + NMT | ||
################ | ||
# Multimodal NMT | ||
################ | ||
from .simple_mmt import SimpleMMT | ||
from .attentive_mmt import AttentiveMMT | ||
|
||
############### | ||
# Speech models | ||
############### | ||
from .asr import ASR | ||
from .multimodal_asr import MultimodalASR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters