(self, all_step_attention_store=False)
| 218 | self.attention_store = {} |
| 219 | |
| 220 | def __init__(self, all_step_attention_store=False): |
| 221 | super(AttentionStore, self).__init__() |
| 222 | self.step_store = self.get_empty_store() |
| 223 | self.attention_store = {} |
| 224 | self.all_step_attention_store = all_step_attention_store |
| 225 | if all_step_attention_store: |
| 226 | self.all_step_attention = {} |
| 227 |
nothing calls this directly
no test coverage detected