Clear all dict
(self)
| 272 | self.count_list[label_dict_idx].append(label) |
| 273 | |
| 274 | def _clear_dict(self): |
| 275 | """Clear all dict |
| 276 | """ |
| 277 | for dict_map in self.dicts: |
| 278 | dict_map.clear() |
| 279 | for id_to_vocab_dict in self.id_to_vocab_dict_list: |
| 280 | id_to_vocab_dict.clear() |
| 281 | |
| 282 | def _print_dict_info(self, count_list=False): |
| 283 | """Print dict info |