Revision e12e03d0c5c13eac56365f1192a073b7cf2278ba authored by Amanpreet Singh on 26 March 2021, 17:49:33 UTC, committed by Facebook GitHub Bot on 26 March 2021, 17:51:02 UTC
Summary:
Pull Request resolved: https://github.com/fairinternal/mmf-internal/pull/155

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

Some of the original monkey patching doesn't work with onbox dataloader inside processors. Also, sets some env variables to support distributed onbox setting.

Reviewed By: ytsheng, vedanuj

Differential Revision: D27306251

fbshipit-source-id: 135b320cf3a585413a8902ee6cd0f67a58ec64d7
1 parent 5c5c356
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