(self, sentence)
| 275 | self.num_words = 3 # Count SOS, EOS, PAD |
| 276 | |
| 277 | def addSentence(self, sentence): |
| 278 | for word in sentence.split(' '): |
| 279 | self.addWord(word) |
| 280 | |
| 281 | def addWord(self, word): |
| 282 | if word not in self.word2index: |
no test coverage detected