MCPcopy Create free account
hub / github.com/pytorch/tutorials / __init__

Method __init__

beginner_source/nn_tutorial.py:790–792  ·  view source on GitHub ↗
(self, dl, func)

Source from the content-addressed store, hash-verified

788
789class WrappedDataLoader:
790 def __init__(self, dl, func):
791 self.dl = dl
792 self.func = func
793
794 def __len__(self):
795 return len(self.dl)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected