File size: 527 Bytes
bc90483 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This software may be used and distributed in accordance with
# the terms of the DINOv3 License Agreement.
from .checkpointer import (
CheckpointRetentionPolicy,
cleanup_checkpoint,
find_all_checkpoints,
find_latest_checkpoint,
init_fsdp_model_from_checkpoint,
init_model_from_checkpoint_for_evals,
keep_checkpoint_copy,
keep_last_n_checkpoints,
load_checkpoint,
register_dont_save_hooks,
save_checkpoint,
)
|