Convencience to build a keras model with given specification.
1 2 3 4 5 6 7 | build_and_compile(
input,
output,
optimizer = "adam",
loss = "mse",
metric = "acc"
)
|
input |
tensor (or keras layer_input) defining model input. |
output |
tensor (or keras layer_input) defining model output. |
optimizer |
keras optimizer (character or callable) to use. |
loss |
loss function (character or callable). |
metric |
metric to score model with. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.