We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d79569 commit ad75044Copy full SHA for ad75044
tensorflow_compression/python/entropy_models/continuous_base.py
@@ -103,17 +103,17 @@ def _check_compression(self):
103
@property
104
def cdf(self):
105
self._check_compression()
106
- return self._cdf.value()
+ return tf.identity(self._cdf)
107
108
109
def cdf_offset(self):
110
111
- return self._cdf_offset.value()
+ return tf.identity(self._cdf_offset)
112
113
114
def cdf_length(self):
115
116
- return self._cdf_length.value()
+ return tf.identity(self._cdf_length)
117
118
119
def dtype(self):
0 commit comments