MCPcopy Create free account
hub / github.com/drinkingcoder/NeuralMarker / __init__

Method __init__

core/datasets.py:33–41  ·  view source on GitHub ↗
(self, args)

Source from the content-addressed store, hash-verified

31
32class PoseDataset(data.Dataset):
33 def __init__(self, args):
34 self.init_seed = False
35
36 self.args = args
37 self.entrydata_list = []
38 self.dataset = self.args.dataset
39 self.transformation = Augmentor(self.args)
40 self.forward_warping = ForwardWarp()
41 self.bg_dataset = SequenceDataset(args, 'train')
42
43 def __getitem__(self, index):
44

Callers

nothing calls this directly

Calls 3

AugmentorClass · 0.90
ForwardWarpClass · 0.90
SequenceDatasetClass · 0.85

Tested by

no test coverage detected