Skip to content

Commit 1152a76

Browse files
committed
fix broken pkgdown link
1 parent 95de6b4 commit 1152a76

File tree

489 files changed

+511
-803
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

489 files changed

+511
-803
lines changed

pkgdown/_pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ navbar:
3131
- text: "Python Subclasses"
3232
href: articles/python_subclasses.html
3333
- text: "Making New Layers and Models via Subclassing"
34-
href: articles/guides/making_new_layers_and_models_via_subclassing.Rmd
34+
href: articles/guides/making_new_layers_and_models_via_subclassing.html
3535
- text: "Customizing what happens in fit"
3636
href: articles/guides/customizing_what_happens_in_fit.html
3737
- text: "--------------------------"

vignettes/guides/customizing_what_happens_in_fit.Rmd

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ editor_options:
3030

3131
```{r setup, include = FALSE}
3232
library(keras)
33+
knitr::opts_chunk$set(
34+
eval = FALSE,
35+
collapse = TRUE,
36+
comment = "#>"
37+
)
3338
```
3439

3540
## Summary

vignettes/guides/writing_your_own_callbacks.Rmd

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ to visualize training progress and results with TensorBoard, or
1919
In this guide, you will learn what a Keras callback is, what it can do, and how you can
2020
build your own. We provide a few demos of simple callback applications to get you
2121
started.
22-
```
2322

23+
```{r, include=FALSE}
24+
knitr::opts_chunk$set(comment = NA, eval = FALSE)
2425
```
26+
2527
## Setup
2628
```{R}
2729
library(tensorflow)

website/404.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/LICENSE-text.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/articles/applications.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/articles/custom_layers.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/articles/custom_models.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/articles/examples/addition_rnn.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/articles/examples/babi_memnn.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)