Revision 2379d0c2379b214b5742e9c39759d509230a9aa7 authored by Ronghang Hu on 03 April 2021, 08:52:39 UTC, committed by Facebook GitHub Bot on 03 April 2021, 08:53:24 UTC
Summary:
Call `update_registry_for_model` to datamodules to register e.g. answer
num. Fix https://github.com/facebookresearch/mmf/issues/847.

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

Test Plan: tested locally with M4C and M4C-Captioner

Reviewed By: apsdehal

Differential Revision: D27553712

Pulled By: ronghanghu

fbshipit-source-id: 7e5a4092658e8240ad615b0601cdf40d393453fb
1 parent 7828606
Raw File
.pre-commit-config.yaml
exclude: 'build'

default_language_version:
    python: python3

repos:
-   repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v2.5.0
    hooks:
    -   id: trailing-whitespace
    -   id: check-ast
    -   id: check-merge-conflict
    -   id: no-commit-to-branch
        args: ['--branch=master']
    -   id: check-added-large-files
        args: ['--maxkb=500']
    -   id: end-of-file-fixer

-   repo: https://github.com/Lucas-C/pre-commit-hooks
    rev: v1.1.7
    hooks:
    -   id: insert-license
        files: \.py$
        args:
        - --license-filepath
        - docs/license_header.txt

-   repo: https://gitlab.com/pycqa/flake8
    rev: 3.7.9
    hooks:
    -   id: flake8

-   repo: https://github.com/asottile/pyupgrade
    rev: v2.2.1
    hooks:
    -   id: pyupgrade
        args: ['--py36-plus']

-   repo: https://github.com/timothycrosley/isort
    rev: 4.3.21
    hooks:
    -   id: isort
        additional_dependencies: [toml]
        exclude: ^website

-   repo: https://github.com/ambv/black
    rev: 19.3b0
    hooks:
    - id: black
      language_version: python3.7
back to top