Add names to the input tensor, small typo (#449)

This commit is contained in:
Kaan 2023-07-11 23:28:35 +01:00 committed by Francois Chollet
parent 60ca4b1799
commit a1a159cce3

@ -31,10 +31,10 @@ class Functional(Function, Model):
Example:
```
inputs = {'x1': keras_core.Input(shape=(10,)),
'x2': keras_core.Input(shape=(1,))}
inputs = {'x1': keras_core.Input(shape=(10,), name='x1'),
'x2': keras_core.Input(shape=(1,), name='x2')}
t = keras_core.layers.Dense(1, activation='relu')(inputs['x1'])
outputs = keras_core.layers.Add()([t, inputs['x2'])
outputs = keras_core.layers.Add()([t, inputs['x2']])
model = keras_core.Model(inputs, outputs)
```