(self, words)
| 120 | return tf_idf_embedding[np.newaxis, :].astype(float) |
| 121 | |
| 122 | def predict(self, words): |
| 123 | pre = self._normalize( self._predict(words) ) |
| 124 | return np.dot( self.words_list_pre[:], pre[0] ) |
| 125 |
nothing calls this directly
no test coverage detected