Thank you! We'll be in touch ASAP.
Something went wrong, please try again or contact us directly at contact@dagshub.com
Deci-AI:master
deci-ai:feature/SG-281-add_kd_notebook
from super_gradients.common.factories.base_factory import BaseFactory from super_gradients.training.datasets.samplers.infinite_sampler import InfiniteSampler from super_gradients.training.datasets.samplers.repeated_augmentation_sampler import RepeatAugSampler from torch.utils.data.distributed import DistributedSampler class SamplersFactory(BaseFactory): def __init__(self): type_dict = {"InfiniteSampler": InfiniteSampler, "RepeatAugSampler": RepeatAugSampler, "DistributedSampler": DistributedSampler } super().__init__(type_dict)
Press p or to see the previous file or, n or to see the next file