MCPcopy Create free account
hub / github.com/Monalissaa/DisenDiff / __init__

Method __init__

train.py:368–369  ·  view source on GitHub ↗
(self, *datasets)

Source from the content-addressed store, hash-verified

366
367class ConcatDataset(Dataset):
368 def __init__(self, *datasets):
369 self.datasets = datasets
370
371 def __getitem__(self, idx):
372 return tuple(d[idx] for d in self.datasets)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected