Meaning of the offset #168
-
Hi, Maybe is a stupid question, but what is the physical meaning of the value called self._offset? self._offset = -minima |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
CompressAI/compressai/entropy_models/entropy_models.py Lines 395 to 405 in 216af74 And is later accessed during CompressAI/compressai/entropy_models/entropy_models.py Lines 260 to 266 in 216af74 ...and is immediately passed into the entropy coder, which subtracts the offset from the symbol it is trying to encode: Each CDF has associated with it a single
Notice how the "zero mean" |
Beta Was this translation helpful? Give feedback.
-
ok thanks got it! and just to be sure at 100%, the cdf_length simply represents the length of the cdf right? i know it can be seem a stupid question, but just to understan fully the code |
Beta Was this translation helpful? Give feedback.
_offset
is set inupdate()
:CompressAI/compressai/entropy_models/entropy_models.py
Lines 395 to 405 in 216af74
And is later accessed during
compress()
:CompressAI/compressai/entropy_models/entropy_models.py
Lines 260 to 266 in 216af74