用法
cardinality()
返回
-
一個標量
tf.int64
Tensor
表示數據集的基數。如果基數是無限的或未知的,cardinality
將分別返回命名常量tf.data.INFINITE_CARDINALITY
和tf.data.UNKNOWN_CARDINALITY
。
返回數據集的基數(如果已知)。
如果數據集包含無限數量的元素,cardinality
可能會返回 tf.data.INFINITE_CARDINALITY
,如果分析無法確定數據集中元素的數量(例如,當數據集源是文件時),則可能會返回 tf.data.UNKNOWN_CARDINALITY
。
dataset = tf.data.Dataset.range(42)
print(dataset.cardinality().numpy())
42
dataset = dataset.repeat()
cardinality = dataset.cardinality()
print((cardinality == tf.data.INFINITE_CARDINALITY).numpy())
True
dataset = dataset.filter(lambda x:True)
cardinality = dataset.cardinality()
print((cardinality == tf.data.UNKNOWN_CARDINALITY).numpy())
True
相關用法
- Python tf.compat.v1.data.TextLineDataset.cache用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.concatenate用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.choose_from_datasets用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.from_tensors用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.filter用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.take_while用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.skip用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.bucket_by_sequence_length用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.sample_from_datasets用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.as_numpy_iterator用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.zip用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.unbatch用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.with_options用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.random用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.reduce用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.from_generator用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.snapshot用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.range用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.rejection_resample用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.unique用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.compat.v1.data.TextLineDataset.cardinality。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。