https://github.com/facebookresearch/pythia
Raw File
Tip revision: da297e47d7612edf78afd21b03fa6b1af7ca7b39 authored by ryan-qiyu-jiang on 13 December 2021, 21:11:52 UTC
Update base for Update on "[docs] Add ViLT model checkpoint instructions"
Tip revision: da297e4
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