https://github.com/facebookresearch/pythia
Raw File
Tip revision: 79600ba27e5973615fd596a2fd10da65c9cf909a authored by sash on 30 June 2021, 18:34:45 UTC
[feat][PL][4/N] best ckpt
Tip revision: 79600ba
version.py
# Copyright (c) Facebook, Inc. and its affiliates.

import sys


__version__ = "1.0.0rc12"

msg = "MMF is only compatible with Python 3.6 and newer."


if sys.version_info < (3, 6):
    raise ImportError(msg)
back to top