Home
last modified time | relevance | path

Searched refs:hash_bucket_size (Results 1 – 14 of 14) sorted by relevance

/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.feature_column.pbtxt9 …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/
Dtensorflow.feature_column.pbtxt9 …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/
Dsequence_feature_column.py141 key, hash_bucket_size, dtype=dtypes.string): argument
181 hash_bucket_size=hash_bucket_size,
Dfeature_column.py1106 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 …]
Dfeature_column_v2.py1128 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 …]
Dfeature_column_v2_test.py480 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 …]
Dfeature_column_test.py383 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 …]
Dsequence_feature_column_test.py250 'aaa', hash_bucket_size=10)
/external/tensorflow/tensorflow/python/training/
Dwarm_starting_util_test.py565 "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/
Dsequence_feature_column_integration_test.py71 'bytes_list', hash_bucket_size=100)
Ddense_features_test.py435 'sparse_feature', hash_bucket_size=5)
1050 key='c', hash_bucket_size=3))]
1072 ab = fc.crossed_column([a, b], hash_bucket_size=2)
Ddense_features_v2_test.py415 'sparse_feature', hash_bucket_size=5)
/external/tensorflow/tensorflow/python/tpu/
Dfeature_column_test.py65 key='aaa', hash_bucket_size=3)
/external/tensorflow/tensorflow/python/keras/engine/
Dfeature_columns_integration_test.py112 hash_bucket_size=1000)