Lucy Richards

Results 1 comments of Lucy Richards

I used gensim.matutils.corpus2csc to create a sparse matrix from gensim's bow document representation, which I then used to train the guidedLda. ``` def bow_iterator(docs, dictionary): for doc in docs: yield...