(self)
| 148 | return random.sample(self.memory, batch_size) |
| 149 | |
| 150 | def __len__(self): |
| 151 | return len(self.memory) |
| 152 | |
| 153 | |
| 154 | ###################################################################### |
nothing calls this directly
no outgoing calls
no test coverage detected