MCPcopy Create free account
hub / github.com/FreeformRobotics/OTS / __len__

Method __len__

lib/utils/data/sampler.py:127–131  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

125 yield batch
126
127 def __len__(self):
128 if self.drop_last:
129 return len(self.sampler) // self.batch_size
130 else:
131 return (len(self.sampler) + self.batch_size - 1) // self.batch_size

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected