Skip to content

Commit ebe7798

Browse files
author
EmbraceLife
committed
add to the end of current line
1 parent e872791 commit ebe7798

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kerasTUT/4-regressor_example.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
# build a neural network from the 1st layer to the last layer
3131
model = Sequential()
32-
model.add(Dense(units=1, input_dim=1))
32+
model.add(Dense(units=1, input_dim=1)) # new_change
3333

3434
# choose loss function and optimizing method
3535
model.compile(loss='mse', optimizer='sgd')

0 commit comments

Comments
 (0)