Learn R Programming

tfio (version 0.4.1)

webp_dataset: Create a WebPDataset.

Description

A WebP Image File Dataset that reads the WebP file.

Usage

webp_dataset(filenames)

Arguments

filenames

A tf.string tensor containing one or more filenames.

Examples

Run this code
# NOT RUN {
dataset <- webp_dataset(
    filenames = list("testdata/sample.webp")) %>%
  dataset_repeat(1)

sess <- tf$Session()
iterator <- make_iterator_one_shot(dataset)
next_batch <- iterator_get_next(iterator)

until_out_of_range({
  batch <- sess$run(next_batch)
  print(batch)
})
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab