iep/models/baselines.py [146:153]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      'hidden_dims': fc_dims,
      'output_dim': len(vocab['answer_token_to_idx']),
      'use_batchnorm': fc_use_batchnorm,
      'dropout': fc_dropout,
    }
    self.classifier = build_mlp(**classifier_kwargs)

  def forward(self, questions, feats):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



iep/models/baselines.py [187:194]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      'hidden_dims': fc_dims,
      'output_dim': len(vocab['answer_token_to_idx']),
      'use_batchnorm': fc_use_batchnorm,
      'dropout': fc_dropout,
    }
    self.classifier = build_mlp(**classifier_kwargs)

  def forward(self, questions, feats):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



