-2
愚蠢的問題,我正在經歷Andrew Ng最新的深度學習課程的第三週,並陷入了一個相當簡單的Numpy功能(我認爲?)。Numpy-深度學習,培訓示例
練習是找出有多少個訓練樣例,我們有。
任何想法是什麼Numpy的功能是找出預裝載培訓示例的大小。
謝謝!
shape_X = X.shape
shape_Y = Y.shape
m = ?
print ('The shape of X is: ' + str(shape_X))
print ('The shape of Y is: ' + str(shape_Y))
print ('I have m = %d training examples!' % (m))
這是一個很棒的解釋!非常感謝! – kyttcar