Closed dfalbel closed 5 years ago
This PR allows us to use purrr style lambda functions with dataset_map:
dataset_map
library(tfdatasets) dataset <- range_dataset(1, 100) %>% dataset_map_and_batch(batch_size = 32, drop_remainder = TRUE, ~ -.x) %>% dataset_prefetch(1)
I would create/update a NEWS file to help track new improvements.
This PR allows us to use purrr style lambda functions with
dataset_map
: