/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.feature_column.pbtxt | 9 …argspec: "args=[\'key\', \'hash_bucket_size\', \'dtype\'], varargs=None, keywords=None, defaults=[… 25 …argspec: "args=[\'keys\', \'hash_bucket_size\', \'hash_key\'], varargs=None, keywords=None, defaul… 45 …argspec: "args=[\'key\', \'hash_bucket_size\', \'dtype\'], varargs=None, keywords=None, defaults=[…
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.feature_column.pbtxt | 9 …argspec: "args=[\'key\', \'hash_bucket_size\', \'dtype\'], varargs=None, keywords=None, defaults=[… 25 …argspec: "args=[\'keys\', \'hash_bucket_size\', \'hash_key\'], varargs=None, keywords=None, defaul… 53 …argspec: "args=[\'key\', \'hash_bucket_size\', \'dtype\'], varargs=None, keywords=None, defaults=[…
|
/external/tensorflow/tensorflow/python/feature_column/ |
D | sequence_feature_column.py | 141 key, hash_bucket_size, dtype=dtypes.string): argument 181 hash_bucket_size=hash_bucket_size,
|
D | feature_column.py | 1106 hash_bucket_size, argument 1149 if hash_bucket_size is None: 1152 if hash_bucket_size < 1: 1155 hash_bucket_size, key)) 1160 return _HashedCategoricalColumn(key, hash_bucket_size, dtype) 1571 def _crossed_column(keys, hash_bucket_size, hash_key=None): argument 1675 if not hash_bucket_size or hash_bucket_size < 1: 1677 'hash_bucket_size: {}'.format(hash_bucket_size)) 1694 keys=tuple(keys), hash_bucket_size=hash_bucket_size, 2804 sparse_values, self.hash_bucket_size, name='lookup') [all …]
|
D | feature_column_v2.py | 1128 hash_bucket_size, argument 1182 if hash_bucket_size is None: 1185 if hash_bucket_size < 1: 1188 hash_bucket_size, key)) 1193 return HashedCategoricalColumn(key, hash_bucket_size, dtype) 1735 def crossed_column(keys, hash_bucket_size, hash_key=None): argument 1839 if not hash_bucket_size or hash_bucket_size < 1: 1841 'hash_bucket_size: {}'.format(hash_bucket_size)) 1859 keys=tuple(keys), hash_bucket_size=hash_bucket_size, hash_key=hash_key) 3348 sparse_values, self.hash_bucket_size, name='lookup') [all …]
|
D | feature_column_v2_test.py | 480 a = fc.categorical_column_with_hash_bucket('aaa', hash_bucket_size=10) 786 self.assertEqual(10, a.hash_bucket_size) 816 self.assertEqual(10, column.hash_bucket_size) 1097 self.assertEqual(15, crossed2_copy.hash_bucket_size) 1132 hash_bucket_size = 10 1134 hash_bucket_size) 1150 self.assertIn(val, list(range(hash_bucket_size))) 1199 crossed = fc.crossed_column([b, 'c'], hash_bucket_size=5, hash_key=5) 1231 crossed = fc.crossed_column([b, 'c'], hash_bucket_size=5, hash_key=5) 1311 crossed = fc.crossed_column([t, 'c'], hash_bucket_size=5, hash_key=5) [all …]
|
D | feature_column_test.py | 383 a = fc._categorical_column_with_hash_bucket('aaa', hash_bucket_size=10) 667 self.assertEqual(10, a.hash_bucket_size) 693 self.assertEqual(10, column.hash_bucket_size) 984 self.assertEqual(15, crossed2_copy.hash_bucket_size) 1017 hash_bucket_size = 10 1019 hash_bucket_size) 1034 self.assertIn(val, list(range(hash_bucket_size))) 1081 crossed = fc._crossed_column([b, 'c'], hash_bucket_size=5, hash_key=5) 1111 crossed = fc._crossed_column([b, 'c'], hash_bucket_size=5, hash_key=5) 1165 crossed = fc._crossed_column([t, 'c'], hash_bucket_size=5, hash_key=5) [all …]
|
D | sequence_feature_column_test.py | 250 'aaa', hash_bucket_size=10)
|
/external/tensorflow/tensorflow/python/training/ |
D | warm_starting_util_test.py | 565 "sc_hash", hash_bucket_size=15) 759 "sc_hash", hash_bucket_size=15) 766 cross = fc.crossed_column([sc_keys, sc_vocab], hash_bucket_size=20) 852 "sc_hash", hash_bucket_size=15) 920 "sc_hash", hash_bucket_size=15) 979 "sc_hash", hash_bucket_size=15)
|
/external/tensorflow/tensorflow/python/keras/feature_column/ |
D | sequence_feature_column_integration_test.py | 71 'bytes_list', hash_bucket_size=100)
|
D | dense_features_test.py | 435 'sparse_feature', hash_bucket_size=5) 1050 key='c', hash_bucket_size=3))] 1072 ab = fc.crossed_column([a, b], hash_bucket_size=2)
|
D | dense_features_v2_test.py | 415 'sparse_feature', hash_bucket_size=5)
|
/external/tensorflow/tensorflow/python/tpu/ |
D | feature_column_test.py | 65 key='aaa', hash_bucket_size=3)
|
/external/tensorflow/tensorflow/python/keras/engine/ |
D | feature_columns_integration_test.py | 112 hash_bucket_size=1000)
|