Cadene / vqa.pytorch

Visual Question Answering in Pytorch
716 stars 177 forks source link

MLBNoAtt does not use BayesianGRU #12

Closed backpropper closed 6 years ago

backpropper commented 6 years ago

In the default case (I guess MLBNoAtt), it uses normal GRU and not the Bayesian one. The README says otherwise.

Cadene commented 6 years ago

You are right, the default.yaml uses a GRU, not a Bayesian one:

Here, a BayesianGRU is used:

I am sorry for this misleading information.

Cadene commented 6 years ago

I just added two options:

backpropper commented 6 years ago

Thanks!