(self)
| 30 | self.constructExampleSet(args) |
| 31 | |
| 32 | def reduceExampleSet(self): |
| 33 | print("Reducing Example Set") |
| 34 | K, t = self.memory_size, len(self.ref_names)+1 |
| 35 | m = K // t |
| 36 | for dataset in self.ref_names: |
| 37 | self.ref_database[dataset] = self.ref_database[dataset][:m] |
| 38 | |
| 39 | def constructExampleSet(self, args): |
| 40 | # breakpoint() |