MCPcopy Create free account
hub / github.com/AkaliKong/MiniOneRec / get_inputs

Method get_inputs

ts_rec_data.py:637–643  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

635 }
636
637 def get_inputs(self):
638 inputs = []
639 for i in tqdm(range(len(self.data))):
640 result = self.pre(i)
641 if result is not None: # Skip None results from deduplication
642 inputs.append(result)
643 self.inputs = inputs
644
645 def get_inputs_list(self):
646 return self.inputs if hasattr(self, 'inputs') else []

Callers 2

__init__Method · 0.95
__init__Method · 0.95

Calls 1

preMethod · 0.95

Tested by

no test coverage detected