Skip to content

Commit

Permalink
Fixes backtick causing CI failure
Browse files Browse the repository at this point in the history
  • Loading branch information
edgararuiz committed Apr 9, 2024
1 parent 399de7e commit 0e1e328
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ unfreeze_weights(conv_base, from = "block3_conv1")

Now you can begin fine-tuning the network. You'll do this with the RMSProp optimizer, using a very low learning rate. The reason for using a low learning rate is that you want to limit the magnitude of the modifications you make to the representations of the three layers you're fine-tuning. Updates that are too large may harm these representations.

````{r}
```{r}
model %>% compile(
loss = "binary_crossentropy",
optimizer = optimizer_rmsprop(lr = 1e-5),
Expand Down

1 comment on commit 0e1e328

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.