()
| 15 | semantic='LatentDirichletAllocation', corpus=data)[0], np.ndarray) |
| 16 | |
| 17 | def test_tfidf_LDA(): |
| 18 | isinstance(text2mat(data, vectorizer='TfidfVectorizer', |
| 19 | semantic='LatentDirichletAllocation', corpus=data)[0], np.ndarray) |
| 20 | |
| 21 | def test_count_NMF(): |
| 22 | isinstance(text2mat(data, vectorizer='CountVectorizer', semantic='NMF', corpus=data)[0], np.ndarray) |
nothing calls this directly
no test coverage detected