self.name + ", but the layer isn\"t built. "
"You can build it manually via: `" +
self.name + ".build(batch_input_shape)`.")
return sum([K.count_params(p)for p in self.weights])
class InputLayer(Layer):
After Change
self.name + ", but the layer isn\"t built. "
"You can build it manually via: `" +
self.name + ".build(batch_input_shape)`.")
return count_params(self.weights)
class InputLayer(Layer):
Layer to be used as an entry point into a graph.