Skip to content

Tag: keras

Save and load model optimizer state

I have a set of fairly complicated models that I am training and I am looking for a way to save and load the model optimizer states. The “trainer models” consist of different combinations of several other “weight models”, of which some have shared weights, some have frozen weights depe…

Mixture usage of CPU and GPU in Keras

I am building a neural network on Keras, including multiple layers of LSTM, Permute and Dense. It seems LSTM is GPU-unfriendly. So I did research and use But based on my understanding about with, with is try…finally block to ensure that clean-up code is executed. I don’t know whether the following…

load weights require h5py

Im trying to run a keras model,trying to use pre-trained VGGnet- When i run this Command base_model = applications.VGG16(weights=’imagenet’, include_top=False, input_shape=(img_rows, img_cols, img_channel)) I get this error: I went through some github issues page where a relevant question was aske…