View source: R/dataset_iterators.R
until_out_of_range | R Documentation |
Execute code that traverses a dataset until an out of range condition occurs
until_out_of_range(expr)
out_of_range_handler(e)
expr |
Expression to execute (will be executed multiple times until the condition occurs) |
e |
Error object |
When a dataset iterator reaches the end, an out of range runtime error will occur. This function will catch and ignore the error when it occurs.
## Not run:
library(tfdatasets)
dataset <- text_line_dataset("mtcars.csv", record_spec = mtcars_spec) %>%
dataset_batch(128) %>%
dataset_repeat(10) %>%
dataset_prepare(x = c(mpg, disp), y = cyl)
iter <- make_iterator_one_shot(dataset)
next_batch <- iterator_get_next(iter)
until_out_of_range({
batch <- sess$run(next_batch)
# use batch$x and batch$y tensors
})
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.