Revision 8f9150ba9de50f09b77a294170b6d7d1e389b9a8 authored by Amanpreet Singh on 18 March 2021, 00:05:31 UTC, committed by Facebook GitHub Bot on 18 March 2021, 00:06:58 UTC
Summary:
- Currently, hardcoded to be run only from the same directory as mmf
- This PR fixes it so that it can be launched from anywhere

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

Test Plan: Tested with MVLT

Reviewed By: ytsheng

Differential Revision: D27136433

Pulled By: apsdehal

fbshipit-source-id: cfa0cb2696a7547c1a299ee9790eaa8fd9dbd307
1 parent 7cc0e4e
Raw File
pyproject.toml
[tool.isort]
# This is required to make sorting same as fbcode as all absolute imports
# are considered third party there
known_third_party = [
    "PIL", "cv2", "demjson", "fairscale", "filelock", "h5py", "lib", "lmdb", "maskrcnn_benchmark", "matplotlib",
    "mmf", "mmf_cli", "numpy", "omegaconf", "packaging", "pycocoevalcap", "pytorch_sphinx_theme",
    "recommonmark", "requests", "setuptools", "sklearn", "termcolor", "tests", "torch",
    "torchtext", "torchvision", "tqdm", "transformers", "pytorch_lightning"
]
skip_glob = "**/build/**,website/**,**/fb/**"
combine_as_imports = true
force_grid_wrap = false
include_trailing_comma = true
line_length = 88
multi_line_output = 3
use_parentheses = true
lines_after_imports = 2

[tool.black]
line-length = 88
exclude = '''
/(
    \.git
  | \.hg
  | \.mypy_cache
  | \.tox
  | \.venv
  | _build
  | buck-out
  | build
  | dist
  | website
  | .*\/fb\/.*
)/
'''
back to top