Question on How EntropyBottleneck's Parameters are Updated #177
-
Hi there, Thank you for your time |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
These likelihoods are computed using an input tensor and the matrices/biases: CompressAI/compressai/entropy_models/entropy_models.py Lines 436 to 469 in 677506b The main "net" optimizer includes the matrices/biases in the list of parameters it optimizes. Therefore, these parameters are updated in such a way that they minimize the rate loss. |
Beta Was this translation helpful? Give feedback.
EntropyBottleneck.forward
computes the likelihoods that are used for the rate loss:CompressAI/compressai/entropy_models/entropy_models.py
Line 501 in 677506b
These likelihoods are computed using an input tensor and the matrices/biases:
CompressAI/compressai/entropy_models/entropy_models.py
Lines 436 to 469 in 677506b