Khanh Quoc Dinh
unread,Dec 15, 2020, 8:02:54 PM12/15/20Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to tensorflow-compression
Hello,
Thanks for the paper Scale-Space Flow for End-to-End Optimized Video Compression.
I am implementing this paper and encounter some implementation details, could you elaborate on these?
A. About scale-space flow:
- 1) is performance sensitive to \sigma_0? 2) what should be a good number for \sigma_0 ? from my setting,
\sigma_0 from a range of 0.1 to 0.4 seems to be fine.
- 3) is reparameterization important? 4) The equation in the paper (page 8506, paragraph of reparameterization) might not be correct, should it be z = i + (\sigma_a^2 - \sigma^2) / (\sigma_b^2 - \sigma_a^2), supposed that \sigma_b at i+1 and \sigma_a at i? 5) how i in the equation will be calculated here and do we need stop_gradient for i? From my experiments, reparameterization does not help (similar performance), so I am not sure if I implemented it correctly.
B. About quantization (Session 3.3)
- 6) Do you use both [10] and [32] quantization, as we have three networks for [ intra, inter, and flow ], each has two bottlenecks of latent and hyperprior, totally 6 places? 7) if so how do you set which quantization method to which network and which bottleneck? Currently from my experiments, applying [10] to everywhere is better than applying [32] to everywhere.
C. About network architecture
- 8) From Table 2 in your supplementary document, you applied QReLU to Hyper decoder, does QReLU affect performance (or ReLU and QReLU different in terms of performance)?
Thank you :)
Best regards,
Khanh