Home
last modified time | relevance | path

Searched refs:hash_bucket_size (Results 1 – 15 of 15) 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.py256 key, hash_bucket_size, dtype=dtypes.string): argument
296 hash_bucket_size=hash_bucket_size,
Dfeature_column.py1101 hash_bucket_size, argument
1144 if hash_bucket_size is None:
1147 if hash_bucket_size < 1:
1150 hash_bucket_size, key))
1155 return _HashedCategoricalColumn(key, hash_bucket_size, dtype)
1566 def _crossed_column(keys, hash_bucket_size, hash_key=None): argument
1670 if not hash_bucket_size or hash_bucket_size < 1:
1672 'hash_bucket_size: {}'.format(hash_bucket_size))
1689 keys=tuple(keys), hash_bucket_size=hash_bucket_size,
2779 sparse_values, self.hash_bucket_size, name='lookup')
[all …]
Dserialization_test.py151 key='c', hash_bucket_size=3))]
171 ab = fc.crossed_column([a, b], hash_bucket_size=2)
251 key='c', hash_bucket_size=3)]
Dfeature_column_v2.py1483 hash_bucket_size, argument
1526 if hash_bucket_size is None:
1529 if hash_bucket_size < 1:
1532 hash_bucket_size, key))
1537 return HashedCategoricalColumn(key, hash_bucket_size, dtype)
2056 def crossed_column(keys, hash_bucket_size, hash_key=None): argument
2160 if not hash_bucket_size or hash_bucket_size < 1:
2162 'hash_bucket_size: {}'.format(hash_bucket_size))
2180 keys=tuple(keys), hash_bucket_size=hash_bucket_size, hash_key=hash_key)
3631 sparse_values, self.hash_bucket_size, name='lookup')
[all …]
Dfeature_column_v2_test.py520 a = fc.categorical_column_with_hash_bucket('aaa', hash_bucket_size=10)
892 self.assertEqual(10, a.hash_bucket_size)
923 self.assertEqual(10, column.hash_bucket_size)
1238 self.assertEqual(15, crossed2_copy.hash_bucket_size)
1275 hash_bucket_size = 10
1277 hash_bucket_size)
1293 self.assertIn(val, list(range(hash_bucket_size)))
1343 crossed = fc.crossed_column([b, 'c'], hash_bucket_size=5, hash_key=5)
1376 crossed = fc.crossed_column([b, 'c'], hash_bucket_size=5, hash_key=5)
1439 crossed = fc.crossed_column([t, 'c'], hash_bucket_size=5, hash_key=5)
[all …]
Dsequence_feature_column_integration_test.py69 'bytes_list', hash_bucket_size=100)
Dfeature_column_test.py389 a = fc._categorical_column_with_hash_bucket('aaa', hash_bucket_size=10)
679 self.assertEqual(10, a.hash_bucket_size)
706 self.assertEqual(10, column.hash_bucket_size)
1008 self.assertEqual(15, crossed2_copy.hash_bucket_size)
1042 hash_bucket_size = 10
1044 hash_bucket_size)
1059 self.assertIn(val, list(range(hash_bucket_size)))
1107 crossed = fc._crossed_column([b, 'c'], hash_bucket_size=5, hash_key=5)
1138 crossed = fc._crossed_column([b, 'c'], hash_bucket_size=5, hash_key=5)
1192 crossed = fc._crossed_column([t, 'c'], hash_bucket_size=5, hash_key=5)
[all …]
Ddense_features_v2_test.py378 'sparse_feature', hash_bucket_size=5)
Ddense_features_test.py431 'sparse_feature', hash_bucket_size=5)
Dsequence_feature_column_test.py831 '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/tpu/
Dfeature_column_test.py65 key='aaa', hash_bucket_size=3)
/external/tensorflow/tensorflow/python/keras/engine/
Dfeature_columns_integration_test.py113 hash_bucket_size=1000)