Revision f024b7ba0a61ae13c7ea4855243992222060f3f6 authored by Sasha Sheng on 08 April 2021, 19:39:46 UTC, committed by Facebook GitHub Bot on 08 April 2021, 19:40:56 UTC
Summary:
* onboard the lightning trainer to use the new datamodule api
* to test: run: - `pytest tests`

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

Reviewed By: apsdehal

Differential Revision: D27617952

Pulled By: ytsheng

fbshipit-source-id: 8881ed40840b85049735bf1fdf33a3f57b0d1987
1 parent b093095
Raw File
__init__.py
# Copyright (c) Facebook, Inc. and its affiliates.
# isort:skip_file
# flake8: noqa: F401

from mmf import utils, common, modules, datasets, models
from mmf.modules import losses, schedulers, optimizers, metrics
from mmf.version import __version__


__all__ = [
    "utils",
    "common",
    "modules",
    "datasets",
    "models",
    "losses",
    "schedulers",
    "optimizers",
    "metrics",
]
back to top