Justin1904 / TensorFusionNetworks

Pytorch Implementation of Tensor Fusion Networks for multimodal sentiment analysis.
169 stars 44 forks source link

TFN results from paper #1

Closed rhoposit closed 6 years ago

rhoposit commented 6 years ago

Hi, in table 2 of the TFN (2017) paper, there is a reference to performance results for TFN_trimodal and another to TFN. The results are different. What's the difference? Because the data is trimodal, shouldn't they be the same?

Justin1904 commented 6 years ago

Hi, in the TFN paper, the core idea is to build a tensor representation that contains unimodal + bimodal + trimodal interactions. The full TFN model does that by first appending 1s to each of the modalities and then take the outer product of them (figure 4). However, the trimodal TFN does not append the 1s, and the resulting tensor will only get trimodal interactions, leaving out unimodal and bimodal interactions.