Skip to content Skip to sidebar Skip to footer

Valueerror: A Merge Layer Should Be Called On A List Of Inputs. Add()

# import the necessary packages import keras from keras.initializers import glorot_uniform from keras.layers import AveragePooling2D, Input, Add from keras.models import Model from

Solution 1:

Add() generally takes 2 values in list. You have only given one.


Post a Comment for "Valueerror: A Merge Layer Should Be Called On A List Of Inputs. Add()"