Home
last modified time | relevance | path

Searched refs:lookup_config (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/contrib/layers/python/layers/
Dfeature_column.py346 lookup_config=None, argument
360 if bucket_size is None and lookup_config is None:
364 if bucket_size is not None and lookup_config:
373 if ((lookup_config) and
374 (not isinstance(lookup_config, _SparseIdLookupConfig))):
378 type(lookup_config), column_name))
380 if (lookup_config and lookup_config.vocabulary_file and
381 lookup_config.vocab_size is None):
390 lookup_config=lookup_config,
403 return self.lookup_config.vocab_size + self.lookup_config.num_oov_buckets
[all …]
Dfeature_column_test.py108 self.assertEqual(b.lookup_config.vocab_size, 454)
109 self.assertEqual(b.lookup_config.vocabulary_file, "a_file")
133 self.assertEqual(weighted_ids.lookup_config, ids.lookup_config)
134 self.assertEqual(weighted_ids.lookup_config.vocab_size, 3)
135 self.assertEqual(weighted_ids.lookup_config.num_oov_buckets, 7)
136 self.assertEqual(weighted_ids.lookup_config.vocabulary_file, "a_file")
336 vocab_size = len(sparse_column.lookup_config.keys)
833 column_copy.lookup_config)
849 column_copy.lookup_config)
/external/v8/src/runtime/
Druntime-scopes.cc64 LookupIterator::Configuration lookup_config( in DeclareGlobal() local
69 lookup_config = LookupIterator::Configuration::OWN; in DeclareGlobal()
71 LookupIterator it(global, name, global, lookup_config); in DeclareGlobal()