본문 바로가기
Naver Clould with BitCamp/Aartificial Intelligence

[Warning] Allocation of ... exceeds 10% of free system memory

by HJ0216 2023. 1. 29.

기본 환경: IDE: VS code, Language: Python

 

⚠️ DataSet Size가 큰 경우, 모델 훈련 과정에서 Batch_size를 높일 때 경고 발생

→ CPU memoey 부족으로 인해 발생하는 경고로 사용 시, 1 epoch 당 훈련시킬 데이터 사이즈를 너무 크게 설정할 경우 오류가 발생할 수 있으므로 fit의 batch_size를 줄여야 함

model.fit(x_train, y_train, validation_split=0.2, epochs=1, callbacks=[earlyStopping], batch_size=128)

 

 

 

참고 자료

📑 Allocation of 406978560 exceeds 10% of free system memory

 

'Naver Clould with BitCamp > Aartificial Intelligence' 카테고리의 다른 글

Ensemble Model  (0) 2023.01.31
LSTM, Bidirectional, Conv1D  (0) 2023.01.30
[Project] Stock price prediction using Ensemble model  (1) 2023.01.28
RNN Model Construction  (0) 2023.01.27
CNN Model Construction2  (0) 2023.01.26