Skip to content
This repository has been archived by the owner on Jan 5, 2023. It is now read-only.

Commit

Permalink
organize models, rename MMT take two
Browse files Browse the repository at this point in the history
  • Loading branch information
ozancaglayan committed Feb 20, 2020
1 parent 870d556 commit 117a359
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
13 changes: 9 additions & 4 deletions nmtpytorch/models/__init__.py
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
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
logger = logging.getLogger('nmtpytorch')


class MultimodalNMT(NMT):
class SimpleMMT(NMT):
"""A encoder/decoder enriched multimodal NMT.
Integration types (feat_fusion argument)
Expand Down

0 comments on commit 117a359

Please sign in to comment.