Skip to content

Commit

Permalink
Break long line
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Nyhus committed Mar 2, 2024
1 parent 0681440 commit 2ca3d3f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion model.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,8 @@ def get(model_type, result_type, weights_from=None, learning_rate=1e-4):
keras.metrics.MeanSquaredError(),
]
model.compile(
optimizer=keras.optimizers.Adagrad(learning_rate=learning_rate),
optimizer=keras.optimizers.Adagrad(
learning_rate=learning_rate),
loss=keras.losses.MeanSquaredError(),
metrics=metrics)

Expand Down

0 comments on commit 2ca3d3f

Please sign in to comment.