https://github.com/facebookresearch/pythia
Raw File
Tip revision: 32053923b391d5025005cc6a4162d23a3985a2d8 authored by ryan-qiyu-jiang on 16 December 2021, 20:54:11 UTC
[docs] Add ViLT model code usage example
Tip revision: 3205392
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