Subscribe
Notify of
865 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments

makeithappen123

윤쌤
X_train = x_train.reshape(60000, 784)
X_test = x_test.reshape(10000, 784)
X_train = X_train.astype(‘float32’)
X_test = X_test.astype(‘float32’)
X_train /= 255
X_test /= 255
print(“X training matrix shape”, X_train.shape)
print(“X training matix shape”, X_test.shape
해당 코드에서 ‘x_train’이 정의 되지 않았다고 하는데 어떻게 해결 하나요

makeithappen123

윤쌤

ironbeetle

윤쌤 swot 분석에 대해서 알려주세요

ducls0116

윤쌤 an = 2/(2n-1) -1/2n 인 수열이 교대급수는 맞는거죠?

makeithappen123

윤쌤 784개의 입력데이터로 10개의 숫자(0~9)를 인식하고 분류하기 위한 딥러닝 모델을 Sequential() 함수를 사용하여 작성해주세요