We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e872791 commit ebe7798Copy full SHA for ebe7798
kerasTUT/4-regressor_example.py
@@ -29,7 +29,7 @@
29
30
# build a neural network from the 1st layer to the last layer
31
model = Sequential()
32
-model.add(Dense(units=1, input_dim=1))
+model.add(Dense(units=1, input_dim=1)) # new_change
33
34
# choose loss function and optimizing method
35
model.compile(loss='mse', optimizer='sgd')
0 commit comments