■ Numpy 의 1D array를 2D array의 row_vector나 column_vector 로 변환해 주어야 할 경우가 종종 발생
해결책:
- row vector로 변환하려면: array_1d.reshape((1, -1)) # -1 은 해당 axis의 size를 자동 결정하라는 뜻
- column vector로 변환하려면; array_1d.reshape((-1, 1))
예)
'Learning & Reasoning > Python - Scikit-learn_Tensorflow' 카테고리의 다른 글
ISLR-with-Python 3장. Linear Regression (0) | 2016.10.21 |
---|---|
ISLR - Introduction to Statiscal Learning with application in R - 에 부쳐 (0) | 2016.10.21 |
Python Pandas 단편 (notes) (0) | 2016.09.29 |
IPython/Jupyter Notebook 단편 (notes) (0) | 2016.09.29 |
Semantic/Frame Net (0) | 2016.05.27 |