Yields a list of all terms, identical to LSA.model.vector.keys().
(self)
| 1317 | |
| 1318 | @property |
| 1319 | def terms(self): |
| 1320 | """ Yields a list of all terms, identical to LSA.model.vector.keys(). |
| 1321 | """ |
| 1322 | return self._terms.values() |
| 1323 | |
| 1324 | features = words = terms |
| 1325 |