()
| 43 | }}, corpus=data)[0].shape[1]==20 |
| 44 | |
| 45 | def test_LDA_class(): |
| 46 | assert text2mat(data, semantic=LatentDirichletAllocation, corpus=data)[0].shape[1]==10 |
| 47 | |
| 48 | def test_LDA_class_instance(): |
| 49 | user_model = LatentDirichletAllocation(n_components=15) |
nothing calls this directly
no test coverage detected