c55d1b295cb6717ba6494917b88183e8d3f284a9,src/gensim/matutils.py,,corpus2csc,#Any#Any#Any#,24
Before Change
// lil_matrix can quickly update rows, so initialize it transposed (documents=rows)
mat = scipy.sparse.lil_matrix((1, 1), dtype = dtype)
mat.rows, mat.data = [], []
for i, doc in enumerate(corpus) :
doc = sorted(doc)
mat.rows.append([fid for fid, _ in doc])
mat.data.append([val for _, val in doc])
After Change
indices.extend([feature_id for feature_id, _ in doc])
data.extend([feature_weight for _, feature_weight in doc])
docs += 1
indptr = numpy.cumsum(indptr)
data = numpy.asarray(data)
indices = numpy.asarray(indices)
return scipy.sparse.csc_matrix((data, indices, indptr), shape = (num_terms, docs), dtype = dtype)
def pad(mat, padRow, padCol):
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 6
Instances Project Name: RaRe-Technologies/gensim
Commit Name: c55d1b295cb6717ba6494917b88183e8d3f284a9
Time: 2010-09-05
Author: piskvorky@92d0401f-a546-4972-9173-107b360ed7e5
File Name: src/gensim/matutils.py
Class Name:
Method Name: corpus2csc
Project Name: dmlc/dgl
Commit Name: cf8a3fb30547d6e980ecd8182f64a51df8e55c62
Time: 2021-02-10
Author: expye@outlook.com
File Name: python/dgl/backend/pytorch/tensor.py
Class Name:
Method Name: pack_padded_tensor
Project Name: RaRe-Technologies/gensim
Commit Name: cac5f014c09193f7a5ad6b71e4012defa0a96baa
Time: 2010-09-05
Author: radimrehurek@seznam.cz
File Name: src/gensim/matutils.py
Class Name:
Method Name: corpus2csc