Skip to content

Commit 9e4e094

Browse files
committed
CRAN pdftex does not support underscores in (figure) file names
1 parent 7d80396 commit 9e4e094

15 files changed

+14
-14
lines changed

R/ops.R

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1774,7 +1774,7 @@ keras$ops$elu(x, alpha)
17741774
#' ```
17751775
#'
17761776
#'
1777-
#' ```{r op_gelu-plot}
1777+
#' ```{r op-gelu-plot}
17781778
#' x <- seq(-5, 5, .1)
17791779
#' plot(x, op_gelu(x),
17801780
#' type = "l", #, frame.plot = FALSE,
@@ -1816,7 +1816,7 @@ keras$ops$gelu(x, approximate)
18161816
#' op_hard_sigmoid(x)
18171817
#' ```
18181818
#'
1819-
#' ```{r op_hard_sigmoid-plot}
1819+
#' ```{r op-hard-sigmoid-plot}
18201820
#' x <- as.array(seq(-5, 5, .1))
18211821
#' plot(x, op_hard_sigmoid(x),
18221822
#' type = 'l', panel.first = grid(), frame.plot = FALSE)
@@ -1853,7 +1853,7 @@ keras$ops$hard_sigmoid(x)
18531853
#' op_leaky_relu(x)
18541854
#' # array([-0.2, 0. , 1. ], shape=(3,), dtype=float64)
18551855
#' ```
1856-
#' ```{r op_leaky_relu-plot}
1856+
#' ```{r op-leaky-relu-plot}
18571857
#' x <- seq(-5, 5, .1)
18581858
#' plot(x, op_leaky_relu(x),
18591859
#' type = 'l', panel.first = grid())
@@ -2166,7 +2166,7 @@ function (x, num_classes, axis = -1L, dtype = NULL)
21662166
#' op_relu(x1)
21672167
#' ```
21682168
#'
2169-
#' ```{r op_relu-plot}
2169+
#' ```{r op-relu-plot}
21702170
#' x <- seq(-10, 10, .1)
21712171
#' plot(x, op_relu(x))
21722172
#' ```
@@ -2199,7 +2199,7 @@ keras$ops$relu(x)
21992199
#' x <- op_convert_to_tensor(c(-3, -2, 0.1, 0.2, 6, 8))
22002200
#' op_relu6(x)
22012201
#' ```
2202-
#' ```{r op_relu6-plot}
2202+
#' ```{r op-relu6-plot}
22032203
#' x <- seq(-10, 10, .1)
22042204
#' plot(x, op_relu6(x))
22052205
#' ```
@@ -2439,7 +2439,7 @@ function (x, axis = -1L)
24392439
#' x <- op_convert_to_tensor(c(-0.555, 0, 0.555))
24402440
#' op_softplus(x)
24412441
#' ```
2442-
#' ```{r op_softplus-plot}
2442+
#' ```{r op-softplus-plot}
24432443
#' x <- seq(-10, 10, .1)
24442444
#' plot(x, op_softplus(x))
24452445
#' ```
@@ -2472,7 +2472,7 @@ keras$ops$softplus(x)
24722472
#' x <- op_convert_to_tensor(c(-0.100, -10.0, 1.0, 0.0, 100.0))
24732473
#' op_softsign(x)
24742474
#' ```
2475-
#' ```{r op_softsign-plot}
2475+
#' ```{r op-softsign-plot}
24762476
#' x <- seq(-10, 10, .1)
24772477
#' plot(x, op_softsign(x), ylim = c(-1, 1))
24782478
#' ```

man/op_gelu.Rd

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

man/op_hard_sigmoid.Rd

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)