mirror of
https://github.com/FoundationVision/GLEE.git
synced 2025-06-03 14:51:17 +08:00
9 lines
347 B
Python
9 lines
347 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
# File:
|
|
|
|
from . import catalog as _UNUSED # register the handler
|
|
from .detection_checkpoint import DetectionCheckpointer
|
|
from fvcore.common.checkpoint import Checkpointer, PeriodicCheckpointer
|
|
|
|
__all__ = ["Checkpointer", "PeriodicCheckpointer", "DetectionCheckpointer", ] |