Description Usage Arguments Value Examples
Tensor extract options
1 2 3 4 5 6 7 8 9 | tf_extract_opts(style = getOption("tensorflow.extract.style"), ...,
one_based = getOption("tensorflow.extract.one_based", TRUE),
inclusive_stop = getOption("tensorflow.extract.inclusive_stop", TRUE),
disallow_out_of_bounds = getOption("tensorflow.extract.dissallow_out_of_bounds",
TRUE),
warn_tensors_passed_asis = getOption("tensorflow.extract.warn_tensors_passed_asis",
TRUE),
warn_negatives_pythonic = getOption("tensorflow.extract.warn_negatives_pythonic",
TRUE))
|
style |
one of |
... |
ignored |
one_based |
TRUE or FALSE, if one-based indexing should be used |
inclusive_stop |
TRUE or FALSE, if slices like |
disallow_out_of_bounds |
TRUE or FALSE, whether checks are performed on the slicing index to ensure it is within bounds. |
warn_tensors_passed_asis |
TRUE or FALSE, whether to emit a warning the
first time a tensor is supplied to |
warn_negatives_pythonic |
TRUE or FALSE, whether to emit
a warning the first time a negative number is supplied to |
an object with class "tf_extract_opts", suitable for passing to
[.tensorflow.tensor()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Not run:
x <- tf$constant(1:10)
opts <- tf_extract_opts("R")
x[1, options = opts]
# or for more fine-grained control
opts <- tf_extract_opts(
one_based = FALSE,
warn_tensors_passed_asis = FALSE,
warn_negatives_pythonic = FALSE
)
x[0:2, options = opts]
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.