Skip to content

Tag: keras

Gaierror while importing pretrained vgg model on kaggle

I am trying to import a pre-trained VGG model in keras on kaggle. I run through an gaierror which was unfamiliar. Downloading data from https://github.com/fchollet/deep-learning-models/releases/download/v0.1/vgg19_weights_tf_dim_ordering_tf_kernels_notop.h5 ———————&#8…

How to fine-tune a functional model in Keras?

Taking a pre-trained model in Keras and replacing the top classification layer to retrain the network to a new task has several examples using a Sequential model in Keras. A sequential model has methods model.pop() and model.add() which make this fairly easy. However, how is this achieved when using a functio…

Input Shape for 1D CNN (Keras)

I’m building a CNN using Keras, with the following Conv1D as my first layer: I’m training with the function: In which train_df is a pandas dataframe of two columns where, for each row, label is an int (0 or 1) and payload is a ndarray of floats padded with zeros/truncated to a length of 1000. The …