Recent Posts
Recent Comments
목록Programming/Python (1)
MyCloud
[NumPy] 서로 다른 Matrix를 합치는 방법
Numpy - Sparse Matrix TfidfVectorizer에 bigram을 사용하여 변환된 3068x23466 sparse matrix에 unigram을 이어붙이고 싶을 때,여러 개의 서로 다른 sparse matrix를 이어붙이는 방법에 대해 적어두려고 합니다. 1. np.c_import numpy as np # matrix a, bnp.c_[a, b]* sparse matrix의 경우 'CClass object is not callable' 오류 2. np.concatenateimport numpy as np # matrix a, bnp.concatenate((a, b))* sparse matrix의 경우 'Error While Concatenation - zero-dimensional ar..
Programming/Python
2016. 8. 10. 03:21