Home
last modified time | relevance | path

Searched refs:_bucketized_column (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/python/feature_column/
Dfeature_column_test.py393 fc._bucketized_column(a, boundaries=[0, 1])
399 fc._bucketized_column(a, boundaries=[0, 1])
405 fc._bucketized_column(a, boundaries=None)
408 fc._bucketized_column(a, boundaries=1.)
411 fc._bucketized_column(a, boundaries=[1, 0])
414 fc._bucketized_column(a, boundaries=[1, 1])
418 b = fc._bucketized_column(a, boundaries=[0, 1])
423 b = fc._bucketized_column(a, boundaries=[0, 1])
428 b = fc._bucketized_column(a, boundaries=[0, 1])
435 b = fc._bucketized_column(a, boundaries=[0, 1])
[all …]
Dfeature_column.py1001 def _bucketized_column(source_column, boundaries): function