MCPcopy Create free account
hub / github.com/drinkingcoder/FlowFormer-Official / __rmul__

Method __rmul__

core/datasets.py:93–96  ·  view source on GitHub ↗
(self, v)

Source from the content-addressed store, hash-verified

91
92
93 def __rmul__(self, v):
94 self.flow_list = v * self.flow_list
95 self.image_list = v * self.image_list
96 return self
97
98 def __len__(self):
99 return len(self.image_list)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected