length.tf_dataset {tfdatasets} | R Documentation |
Get Dataset length
Description
Returns the length of the dataset.
Usage
## S3 method for class 'tf_dataset'
length(x)
## S3 method for class 'tensorflow.python.data.ops.dataset_ops.DatasetV2'
length(x)
Arguments
x |
a |
Value
Either Inf
if the dataset is infinite, NA
if the dataset length
is unknown, or an R numeric if it is known.
Examples
## Not run:
range_dataset(0, 42) %>% length()
# 42
range_dataset(0, 42) %>% dataset_repeat() %>% length()
# Inf
range_dataset(0, 42) %>% dataset_repeat() %>%
dataset_filter(function(x) TRUE) %>% length()
# NA
## End(Not run)
[Package tfdatasets version 2.17.0 Index]