BERT_multimodal_transformer
BERT_multimodal_transformer copied to clipboard
BERT is better than BERT+MAG
I simply return text_embedding in MAG's forward() function to reproduce performance of BERT model
def forward(self, text_embedding, visual, acoustic): return text_embedding
but I found that on MOSI, BERT model 5 run average best acc(0.8327) is higher than BERT+MAG(0.8275)