()
| 11 | assert isinstance(text2mat(data)[0], np.ndarray) |
| 12 | |
| 13 | def test_count_LDA(): |
| 14 | isinstance(text2mat(data, vectorizer='CountVectorizer', |
| 15 | semantic='LatentDirichletAllocation', corpus=data)[0], np.ndarray) |
| 16 | |
| 17 | def test_tfidf_LDA(): |
| 18 | isinstance(text2mat(data, vectorizer='TfidfVectorizer', |
nothing calls this directly
no test coverage detected