Skip to content

Commit

Permalink
import all datasets in __init__
Browse files Browse the repository at this point in the history
  • Loading branch information
yocabon committed Jun 14, 2024
1 parent 5e39914 commit bea7c98
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions dust3r/datasets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
# Licensed under CC BY-NC-SA 4.0 (non-commercial use only).
from .utils.transforms import *
from .base.batched_sampler import BatchedRandomSampler # noqa: F401
from .co3d import Co3d # noqa: F401
from .arkitscenes import ARKitScenes # noqa: F401
from .scannetpp import ScanNetpp # noqa: F401
from .arkitscenes import ARKitScenes # noqa
from .blendedmvs import BlendedMVS # noqa
from .co3d import Co3d # noqa
from .megadepth import MegaDepth # noqa
from .scannetpp import ScanNetpp # noqa
from .staticthings3d import StaticThings3D # noqa
from .waymo import Waymo # noqa
from .wildrgbd import WildRGBD # noqa


def get_data_loader(dataset, batch_size, num_workers=8, shuffle=True, drop_last=True, pin_mem=True):
Expand Down

0 comments on commit bea7c98

Please sign in to comment.