mirror of
https://github.com/zenlm/vjepa2.git
synced 2026-07-27 06:31:35 +00:00
Co-authored-by: Nicolas Ballas <114940740+ballasnicolas@users.noreply.github.com> Co-authored-by: Adrien Bardes <abardes@fb.com> Co-authored-by: David Fan <davidfan219@gmail.com> Co-authored-by: Quentin Garrido <garridoq@meta.com> Co-authored-by: Russell Howes <rhowes@meta.com> Co-authored-by: Mojtaba Komeili <11262163+mojtaba-komeili@users.noreply.github.com> Co-authored-by: Matthew Muckley <matt.muckley@gmail.com> Co-authored-by: Koustuv Sinha <koustuv.sinha@mail.mcgill.ca> Co-authored-by: Artem Zholus <artem.zholus@gmail.com>
16 lines
429 B
Python
16 lines
429 B
Python
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
from evals.hub.preprocessor import vjepa2_preprocessor
|
|
from src.hub.backbones import (
|
|
vjepa2_ac_vit_giant,
|
|
vjepa2_vit_giant,
|
|
vjepa2_vit_giant_384,
|
|
vjepa2_vit_huge,
|
|
vjepa2_vit_large,
|
|
)
|
|
|
|
dependencies = ["torch", "timm", "einops"]
|