aks*_*t.C 2 python keras tensorflow google-colaboratory
我正在使用 2403 张图像(每张图像 1280x720 像素)训练 CNN。这是我正在运行的代码:
from tensorflow.keras.preprocessing.image import ImageDataGenerator
import tensorflow as tf
from tensorflow import keras
from tensorflow.keras.layers import Conv2D,MaxPooling2D,Activation,Dense,Flatten,Dropout
model = keras.Sequential()
model.add(Conv2D(32, (3, 3), input_shape=(1280,720,3)))
model.add(Activation('relu'))
model.add(MaxPooling2D(pool_size=(2, 2)))
model.add(Conv2D(32, (3, 3)))
model.add(Activation('relu'))
model.add(MaxPooling2D(pool_size=(2, 2)))
model.add(Conv2D(64, (3, 3)))
model.add(Activation('relu'))
model.add(MaxPooling2D(pool_size=(2, 2)))
model.add(Flatten())
model.add(Dense(64))
model.add(Activation('relu'))
model.add(Dropout(0.5))
model.add(Dense(3))
model.add(Activation('softmax'))
model.compile(loss='categorical_crossentropy',
optimizer='rmsprop',
metrics=['accuracy'])
train_datagen = ImageDataGenerator(
rescale=1. / 255,
shear_range=0.2,
zoom_range=0.2,
horizontal_flip=True)
# this is the augmentation configuration we will use for testing:
# only rescaling
test_datagen = ImageDataGenerator(rescale=1. / 255)
train_generator = train_datagen.flow_from_directory(
'/gdrive/MyDrive/shot/training',
target_size=(1280, 720),
batch_size=640,
class_mode='categorical')
history = model.fit(
train_generator,
steps_per_epoch= 2403//640,
epochs= 15,
)
Run Code Online (Sandbox Code Playgroud)
会话在第一个纪元之前崩溃。我可以采取什么措施来减少 RAM 使用量吗?我还有什么其他选择?
看起来你的批量大小很大,消耗了所有的 RAM。因此,我建议首先尝试使用较小的批量大小,例如 32 或 64。此外,您的图像尺寸太大,您可以首先减小它以进行实验。
train_generator = train_datagen.flow_from_directory(
'/gdrive/MyDrive/shot/training',
target_size=(256, 256), # -> Change the image size
batch_size=32, # -> Reduce batch size
class_mode='categorical'
)
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
7500 次 |
| 最近记录: |