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

Method __init__

train.py:341–342  ·  view source on GitHub ↗
(self, dataset)

Source from the content-addressed store, hash-verified

339 """Wraps an arbitrary object with __len__ and __getitem__ into a pytorch dataset"""
340
341 def __init__(self, dataset):
342 self.data = dataset
343
344 def __len__(self):
345 return len(self.data)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected