HomeSort by relevance Sort by last modified time
    Searched refs:lookup_config (Results 1 - 3 of 3) sorted by null

  /external/tensorflow/tensorflow/contrib/layers/python/layers/
feature_column.py 309 "column_name", "is_integerized", "bucket_size", "lookup_config",
317 One and only one of bucket_size or lookup_config should be set. If
325 lookup_config: A _SparseIdLookupConfig defining feature-to-id lookup
338 TypeError: if lookup_config is not a _SparseIdLookupConfig.
346 lookup_config=None,
360 if bucket_size is None and lookup_config is None:
361 raise ValueError("one of bucket_size or lookup_config must be set. "
364 if bucket_size is not None and lookup_config:
365 raise ValueError("one and only one of bucket_size or lookup_config "
373 if ((lookup_config) an
803 def lookup_config(self): member in class:_WeightedSparseColumn
    [all...]
feature_column_test.py 85 self.assertEqual(b.lookup_config.vocab_size, 454)
86 self.assertEqual(b.lookup_config.vocabulary_file, "a_file")
110 self.assertEqual(weighted_ids.lookup_config, ids.lookup_config)
111 self.assertEqual(weighted_ids.lookup_config.vocab_size, 3)
112 self.assertEqual(weighted_ids.lookup_config.num_oov_buckets, 7)
113 self.assertEqual(weighted_ids.lookup_config.vocabulary_file, "a_file")
313 vocab_size = len(sparse_column.lookup_config.keys)
    [all...]
  /external/v8/src/runtime/
runtime-scopes.cc 63 LookupIterator::Configuration lookup_config(
68 lookup_config = LookupIterator::Configuration::OWN;
70 LookupIterator it(global, name, global, lookup_config);
    [all...]

Completed in 217 milliseconds