Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/contrib/layers/python/layers/
Dfeature_column.py458 def is_compatible(self, other_column): argument
460 if self.lookup_config and other_column.lookup_config:
461 return self.lookup_config == other_column.lookup_config
462 compatible = (self.length == other_column.length and
463 (self.dtype == other_column.dtype or
464 (self.dtype.is_integer and other_column.dtype.is_integer)))
467 format(self.name, other_column.name))
875 def is_compatible(self, other_column): argument
877 if isinstance(other_column, _WeightedSparseColumn):
878 return self.sparse_id_column.is_compatible(other_column.sparse_id_column)
[all …]