()
| 25 | isinstance(text2mat(data, vectorizer='TfidfVectorizer', semantic='NMF', corpus=data)[0], np.ndarray) |
| 26 | |
| 27 | def test_transform_no_text_model(): |
| 28 | assert isinstance(text2mat(data, semantic=None, corpus=data)[0], np.ndarray) |
| 29 | |
| 30 | def test_text_model_params(): |
| 31 | assert isinstance(text2mat(data, semantic={ |
nothing calls this directly
no test coverage detected