LipFD / data /__init__.py
huahua123313's picture
Add files using upload-large-folder tool
127bcdc verified
Raw
History Blame Contribute Delete
905 Bytes
import torch
import numpy as np
from torch.utils.data.sampler import WeightedRandomSampler
from .datasets import AVLip
def get_bal_sampler(dataset):
targets = []
for d in dataset.datasets:
targets.extend(d.targets)
ratio = np.bincount(targets)
w = 1.0 / torch.tensor(ratio, dtype=torch.float)
sample_weights = w[targets]
sampler = WeightedRandomSampler(
weights=sample_weights, num_samples=len(sample_weights)
)
return sampler
def create_dataloader(opt):
shuffle = not opt.serial_batches if (opt.isTrain and not opt.class_bal) else False
dataset = AVLip(opt)
sampler = get_bal_sampler(dataset) if opt.class_bal else None
data_loader = torch.utils.data.DataLoader(
dataset,
batch_size=opt.batch_size,
shuffle=True,
sampler=sampler,
num_workers=int(opt.num_threads),
)
return data_loader