Revision 38fab0bd87371924be7fe6c1efae3121491376b7 authored by Rui Hou on 09 May 2021, 00:44:49 UTC, committed by Facebook GitHub Bot on 09 May 2021, 00:45:41 UTC
Summary:
Pull Request resolved: https://github.com/fairinternal/mmf-internal/pull/172

Pull Request resolved: https://github.com/facebookresearch/mmf/pull/874

Make it possible to have the mlm head weights tied to text_encoder embedding weights in case we have a separate text encoder for encoding text modalities.

Reviewed By: apsdehal

Differential Revision: D27756957

fbshipit-source-id: ce26e79ca9930127f36c3c2adfe280e3c67ac23a
1 parent dbe8dec
Raw File
.flake8
# This is an example .flake8 config used when developing *Black* itself.

[flake8]
max-line-length = 88
max-complexity = 18
select = B,C,E,F,W,T4,B9
ignore = E203, E266, C901, C408, W503
back to top