Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. model = Sequential()
  2. model.add(Dense(20, input_dim=13, init='normal', activation='relu'))
  3. model.add(Dense(10, init='normal', activation='relu'))
  4. model.add(Dense(1, init='normal'))
  5.  
  6. model.compile(loss='mean_squared_error', optimizer='adam')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement