https://github.com/facebookresearch/pythia
Raw File
Tip revision: 54c8b110aadaad1124083276531b1f12f42f5889 authored by Ronghang Hu on 01 June 2021, 21:41:22 UTC
[fix] fix TPU checkpoint saving, parameter broadcasting, and misc stuff
Tip revision: 54c8b11
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