Skip to content

Commit c2ec968

Browse files
author
EmbraceLife
committed
back 2 commits
1 parent edccbd2 commit c2ec968

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

kerasTUT/4-regressor_example.py

+4
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,12 @@
3030
# build a neural network from the 1st layer to the last layer
3131
model = Sequential()
3232
# update Dense arg 'units' here
33+
<<<<<<< HEAD
3334
model.add(Dense(units=1, input_dim=1))
3435
# new_change
36+
=======
37+
model.add(Dense(units=1, input_dim=1)) # edit same line1
38+
>>>>>>> kur_tutorials
3539

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

0 commit comments

Comments
 (0)