https://github.com/facebookresearch/pythia
Raw File
Tip revision: 7a67d7bccebf9c971b7cbe816c24b6fa660ce0a9 authored by Amanpreet Singh on 14 October 2021, 19:31:24 UTC
[fix,chores] Lint and wandb
Tip revision: 7a67d7b
file_io.py
# Copyright (c) Facebook, Inc. and its affiliates.

from iopath.common.file_io import PathManager as pm


PathManager = pm()

try:
    # [FB only] register internal file IO handlers
    from mmf.utils.fb.file_io_handlers import register_handlers

    register_handlers(PathManager)
except ImportError:
    pass
back to top