Paper deep dive
HAMP-LIC: Hessian-Aware Mixed-Precision Post-Training Quantization for Learned Image Compression
Yuefeng Zhang
Intelligence
Status: not_run | Model: - | Prompt: - | Confidence: 0%
Entities (0)
Relation Signals (0)
No relation signals yet.
Cypher Suggestions (0)
No Cypher suggestions yet.
Abstract
Abstract:Use this plain-text version for the arXiv abstract field: Learned image compression (LIC) models achieve strong rate-distortion performance but are hindered by high computational complexity and encoding-decoding mismatches across heterogeneous hardware platforms. Uniform fixed-precision quantization alleviates these issues but suffers severe quality degradation at low bit widths because it ignores differences in the quantization sensitivities of individual layers. To enable efficient and accurate low-bit deployment of pretrained LIC models, we propose HAMP-LIC, a Hessian-aware mixed-precision post-training quantization (PTQ) framework with a four-stage optimization strategy. First, block-wise sensitivity is estimated from the Hessian trace to capture second-order importance. Second, a task-aware refinement module adjusts these sensitivities by jointly considering quantization distortion and rate-distortion performance. Third, guided by the refined sensitivity profile, bit widths are allocated under a global model-size constraint to balance efficiency and reconstruction quality. Finally, block-wise reconstruction using a small calibration set further suppresses quantization error. Experiments on representative LIC models, including Minnen2018 and Cheng2020, demonstrate that HAMP-LIC achieves up to 4.85x model compression with as little as 0.59% BD-rate loss. It consistently outperforms existing fixed- and mixed-precision PTQ methods across multiple datasets while completely eliminating cross-platform encoding-decoding errors.
Tags
Links
- Source: https://arxiv.org/abs/2608.12239v1
- Canonical: https://arxiv.org/abs/2608.12239v1
Trouble viewing inline? Open PDF directly ā
Full Text
53,383 characters extracted from source content.
Expand or collapse full text
HAMP-LIC: Hessian-Aware Mixed-Precision Post-Training Quantization for Learned Image Compression Yuefeng Zhang Thanks: Yuefeng Zhang is with the Beijing Institute of Computer Technology and Application, Beijing, China. She is currently pursuing a Ph.D. degree at the School of Elite Engineering, Northwestern Polytechnical University, Shaanxi, China (e-mail: yuefeng.zhang@mail.nwpu.edu.cn). Abstract Learned image compression (LIC) models achieve strong rateādistortion performance but are hindered by high computational complexity and encodingādecoding mismatches across heterogeneous hardware platforms. Uniform fixed-precision quantization alleviates these issues but suffers severe quality degradation at low bit-widths, as it ignores the differing quantization sensitivities of individual layers. To enable efficient and accurate low-bit deployment of pre-trained LIC models, we propose HAMP-LIC, a Hessian-aware mixed-precision post-training quantization (PTQ) framework with a four-stage optimization strategy. First, block-wise sensitivity is estimated from the Hessian trace to capture second-order importance. Second, a task-aware refinement module adjusts these sensitivities by jointly considering quantization distortion and rateādistortion performance. Third, guided by the refined sensitivity profile, bit-widths are allocated under a global model-size constraint to balance efficiency and reconstruction quality. Finally, block-wise reconstruction on a small calibration set further suppresses quantization error. Experiments on representative LIC models, including Minnen2018 and Cheng2020, demonstrate that HAMP-LIC achieves up to 4.85Ć model compression with as low as 0.59% BD-rate loss, consistently outperforming existing fixed- and mixed-precision PTQ methods across multiple datasets while completely eliminating cross-platform encodingādecoding errors. Index Terms: Learned image compression, post-training quantization, mixed-precision quantization, Hessian-based sensitivity analysis, model compression. This work has been submitted to the IEEE for possible publication. Copyright may be transferred without notice, after which this version may no longer be accessible. Fig. 1: The overview of the proposed quantization framework HAMP-LIC for the pre-trained LIC model, where 4 steps are conducted. I Introduction Recent advances in learned image compression (LIC) have established it as a leading paradigm in image and video coding, achieving significant improvements in rateādistortion performance over traditional handcrafted codecs. By jointly optimizing nonlinear transforms and probabilistic entropy models, LIC systems are able to learn compact latent representations that substantially enhance compression efficiency while preserving reconstruction quality. Despite these advantages, the computational and memory requirements of modern LIC architectures remain prohibitive for deployment on resource-constrained devices, limiting their practical applicability in real-world scenarios. In addition to high inference cost, LIC models are also sensitive to numerical precision [12]. In practice, different hardware platforms exhibit inconsistent behavior in floating-point arithmetic, particularly in entropy modeling and probability estimation. Such discrepancies can lead to encodingādecoding mismatches, resulting in degraded reconstruction quality or even instability across platforms. This problem is far from negligible in practice: as shown in our experiments (Section IV-B4), a full-precision Cheng2020 model fails to decode up to 24 out of 24 Kodak images and 98 out of 100 Tecnick images when encoding and decoding are performed on different devices (CPU and GPU). These issues highlight the need for efficient and numerically robust compression strategies that maintain performance under low-precision computation. To address these challenges, model quantization has emerged as a promising solution for reducing computational complexity and memory footprint. Existing quantization methods are generally categorized into Quantization-Aware Training (QAT) [2] and Post-Training Quantization (PTQ) [14, 13, 25, 15]. QAT incorporates quantization effects during training to improve robustness but requires full access to training data and substantial retraining cost. By treating all modules with a fixed precision, these methods ignore the heterogeneous sensitivity of different modules, which often leads to suboptimal rateādistortion performance under aggressive quantization. Although the recent FMPQ [15] explores mixed-precision quantization for LIC, it remains limited to relatively high precision (e.g., 8-bit average) and does not fully investigate ultra-low-bit regimes. In contrast, PTQ directly converts a pre-trained FP32 model into a low-bit representation using a small calibration set, eliminating training time. However, most existing PTQ approaches for LIC adopt uniform bit-width assignment across all parameters: Hong et al. [14] restrict fixed-point inference to the decoder with range-adaptive quantization (RAQ), He et al. [13] first apply PTQ to pre-trained LIC networks without retraining, and RDO-PTQ [25] further introduces rateādistortion-aware block-wise reconstruction. From a broader perspective, existing LIC quantization methods still face a fundamental trade-off between efficiency, accuracy, and generality. Uniform quantization strategies, while simple, fail to reflect the highly non-uniform redundancy across network components, leading to inefficient precision allocation. In contrast, mixed-precision approaches developed for general vision tasks are often tailored to classification networks and rely on heuristic sensitivity metrics or expensive search procedures, making them difficult to transfer to LIC settings with rateādistortion optimization and entropy-constrained latent representations. Moreover, LIC models possess unique structural characteristics, such as hyperprior-based entropy modeling and iterative analysisāsynthesis transforms, which further complicate sensitivity estimation and bit allocation. These differences highlight the necessity of a dedicated mixed-precision quantization strategy specifically designed for LIC. To further improve efficiency and robustness, recent studies have shown that second-order information, particularly the Hessian matrix [9], provides a principled measure of layer-wise sensitivity in neural networks. This insight enables more informed precision allocation by identifying modules that are more sensitive to quantization perturbations. Motivated by this observation, we propose a mixed-precision PTQ framework for LIC that enables efficient low-bit compression while ensuring numerical consistency across heterogeneous hardware platforms. In our method, block-wise sensitivity is estimated using Hessian-based second-order information, and bit-width allocation is formulated as a constrained integer optimization problem under a target compression ratio. The optimization further incorporates rateādistortion-aware objectives to jointly minimize quantization error and task-specific distortion. The proposed framework, termed Hessian-Aware Mixed-Precision PTQ for LIC (HAMP-LIC), follows a four-stage pipeline (Fig. 1): (1) sensitivity estimation, (2) task-aware metric construction, (3) mixed-precision allocation via constrained optimization, and (4) block-wise reconstruction refinement. This article substantially extends our DCC 2026 paper, MPP-LIC [31]. Beyond the four-stage mixed-precision PTQ framework, it introduces task-aware sensitivity combining Hessian-trace information with rateādistortion degradation, formulates bit-width allocation as a global size-constrained optimization solved via Pareto-frontier search, and details block-wise reconstruction using sequential scaling optimization and adaptive rounding. The main contributions of this work are summarized as follows: 1. We propose HAMP-LIC, a mixed-precision PTQ framework that integrates Hessian-based second-order sensitivity estimation with rateādistortion-aware optimization for LIC models. 2. We design a task-aware sensitivity refinement that modulates the Hessian-trace metric with the rateādistortion loss degradation of each block, so that bit-width decisions directly reflect the compression objective rather than generic reconstruction error. 3. We formulate bit allocation as a constrained integer optimization problem and introduce an efficient Pareto-frontier search strategy that reduces complexity from exponential to tractable scale, combined with progressive block-wise refinement. 4. We demonstrate that HAMP-LIC achieves up to 4.85Ć model compression with negligible BD-rate degradation, while ensuring cross-platform numerical consistency and eliminating floating-point-induced decoding mismatches. The remainder of this paper is organized as follows. Section I reviews related work on neural network compression, quantization for LIC, and mixed-precision quantization. Section I details the four steps of the proposed HAMP-LIC framework. Section IV presents the experimental settings, comparisons with state-of-the-art PTQ methods, and ablation studies. Finally, Section V concludes this paper. I Related Work In this section, we first review neural network compression methods in Section I-A, followed by applications of model compression in LIC in Section I-B. Finally, we discuss mixed-precision quantization methods in Section I-C. I-A Neural Network Compression Neural network compression aims to reduce computational cost and memory footprint while preserving model accuracy. Among existing techniques, quantization is particularly attractive due to its hardware efficiency, converting full-precision weights and activations into low-bit representations. Quantization methods are typically categorized into Quantization-Aware Training (QAT) [18, 19] and Post-Training Quantization (PTQ) [3, 10]. QAT simulates quantization during training, allowing the model to adapt to quantization errors via gradient-based optimization [2]. While effective under extremely low bit-widths, it requires full training data and incurs high computational cost. PTQ, in contrast, directly quantizes pre-trained models using a small calibration set to estimate activation statistics [13]. Although efficient, PTQ often suffers from noticeable accuracy degradation in low-bit settings. Recent reconstruction-based approaches aim to bridge this gap by optimizing quantization with unlabeled calibration data. AdaRound [24] formulates weight rounding as a learnable optimization problem. BRECQ [22] performs block-wise reconstruction to capture inter-layer dependencies. AdaQuant [17] jointly optimizes weight rounding and activation clipping, while QDrop [28] improves robustness by stochastically bypassing quantization during reconstruction. These methods operate at different granularities (e.g., tensor-, layer-, and block-level), balancing optimization flexibility and computational efficiency. I-B Application of Model Compression in LIC Model compression, particularly quantization, has become increasingly important in LIC to enable efficient deployment. Early work focused on mitigating the inconsistency of floating-point computation across hardware. BallĆ© et al. [2] proposed integer-only LIC networks to ensure deterministic and hardware-friendly inference. Hong et al. [14] further explored partial quantization by restricting fixed-point inference to the decoder, reducing complexity while preserving rateādistortion performance. More recent efforts have shifted toward fully quantized LIC models. He et al. [13] first applied Post-Training Quantization (PTQ) to pre-trained LIC networks, enabling efficient deployment without retraining, but suffering from performance degradation at low bit-widths. To address this, Sun et al. [26] reduced activation dynamic ranges via channel splitting and pruning, improving quantization robustness. Recent advances incorporate reconstruction-based PTQ into LIC. Shi et al. [25] integrated BRECQ [22] for block-wise reconstruction and further introduced task-aware rateādistortion optimization, moving beyond MSE-based objectives. These efforts reflect a shift toward structured and task-aware quantization, narrowing the performance gap with full-precision LIC while maintaining efficiency. I-C Mixed Precision Quantization Mixed-precision quantization exploits the observation that different layers in a neural network exhibit varying sensitivity to quantization [9, 27]. Instead of applying a uniform bit-width across all layers, it assigns higher precision to more sensitive layers and lower precision to less sensitive ones, thereby achieving a better trade-off between model size, computational efficiency, and accuracy. This adaptive allocation is particularly beneficial for deep architectures, where quantization errors can accumulate unevenly across layers. Most existing approaches [29, 32] formulate mixed-precision quantization as a global optimization problem, aiming to determine the optimal bit-width configuration for each layer under constraints such as model size, latency, or energy consumption. These methods typically integrate bit-width selection into the training process, leveraging gradient-based optimization or reinforcement learning to jointly optimize network weights and precision assignments. While effective, such approaches often incur substantial computational overhead due to the large search space. A key challenge arises from the combinatorial nature of the problem: the search space for layer-wise bit-width assignment grows exponentially with the number of layers, making exhaustive search intractable for modern deep networks. To alleviate this issue, sensitivity-based methods [9, 16, 30] have been proposed. These approaches first estimate the quantization sensitivity of each layer in a pre-trained model, typically based on metrics such as reconstruction error or loss perturbation. Bit-widths are then allocated by ranking layers according to their sensitivity, assigning higher precision to layers that are more critical to overall performance. This strategy significantly reduces the search complexity while maintaining competitive accuracy. I Proposed Method In this section, we present the proposed HAMP-LIC framework. We first introduce the preliminaries (Section I-A), including the block-wise quantization formulation and the rateādistortion objective of LIC models, and then detail the four steps ((Sections I-BāI-E)) through which HAMP-LIC applies mixed-precision quantization to the pretrained LIC model. The complete procedure is summarized in Algorithm 1. I-A Preliminaries Assume that the LIC model can be partitioned into L blocks denoted by B1,B2,ā¦,BL\B_1,B_2,ā¦,B_L\, each associated with learnable weight parameters W1,W2,ā¦,WL\W_1,W_2,ā¦,W_L\. Each block may consist of one or more layers, and the quantization of each block is performed independently to enable fine-grained reconstruction. The b-bit uniform quantization operation applied to a weight parameter W is defined as: Wb=Clipā(āW/sā,n,p) W_b=Clip ( W/s ,n,p ) (1) where s denotes the quantization scale parameter that controls the mapping from floating-point values to integers, and n and p represent the negative and positive integer clipping thresholds, respectively, which are determined by the target bit-width b as n=ā2bā1n=-2^b-1 and p=2bā1ā1p=2^b-1-1 for signed quantization. The rounding operation āā ā Ā· maps each scaled value to its nearest integer, and the clipping operation Clipā(ā ,ā )Clip(Ā·,Ā·) ensures that all values remain within the representable range. Following previous studies [25, 26], we adopt per-channel scale quantization, where each output channel of a weight tensor is assigned an independent scale parameter s, allowing for finer adjustment of the quantization range and reducing the overall quantization error compared to per-tensor quantization. For the LIC network, the overall training objective can be formulated as a rate-distortion loss function defined over the training set: āā”(Īø)=1Nāāi=1NJā”(xi,x^i,Īø) (Īø)= 1N _i=1^NJ(x_i, x_i;Īø) (2) where xāXxā X denotes the input image set, x^āX xā X denotes the corresponding reconstructed image set produced by the LIC model, and N=|X|N=|X| is the total number of training samples. The per-sample R-D loss Jā”(xi,x^i,Īø)J(x_i, x_i;Īø) combines a distortion term measuring reconstruction fidelity (e.g., MSE or MS-SSIM) and a rate term penalizing the estimated bitrate of the latent representation, jointly encouraging the model to achieve a favorable rate-distortion trade-off. Algorithm 1 HAMP-LIC: Hessian-Aware Mixed-Precision PTQ for LIC 0: FP32 model ā³=Bll=1LM=\B_l\_l=1^L; calibration set calX_cal; bit-width set B; budget ϵε. 0: Mixed-precision quantized model ā³māpM_mp. 1: // 1. Hessian-based sensitivity 2: for l=1l=1 to L do 3: Estimate Trā”(Hl)Tr(H_l) on calX_cal using Hutchinsonās method; 4: end for 5: // 2. Build task-oriented sensitivity list 6: Evaluate the 8-bit reference loss āint8L_int8 on calX_cal; 7: for l=1l=1 to L do 8: for bāBbā B do 9: Quantize BlB_l to b bits and evaluate āqp,lā(b)L_qp,l(b); 10: Ī©lā(b)āTrā”(Hl)ā|āqp,lā(b)āāint8||āint8| _l(b) (H_l) |L_qp,l(b)-L_int8||L_int8|; 11: end for 12: end for 13: // 3. Mixed-precision allocation 14: Rank blocks by task-aware sensitivity and enumerate monotone contiguous partitions as in Eq. (7); 15: blāl=1Lāargminblāl=1LĪ©l(bl) \b_l^*\_l=1^Lā *argmin_\b_l\ _l=1^L _l(b_l) 16: s.t.blāB,18āLāāl=1Lblā¤Ļµ .t. b_lā B, 18L _l=1^Lb_lā¤Īµ; 17: // 4. Block-wise reconstruction 18: for l=1l=1 to L do 19: Set ^l=Qā”(l,sl) w^\,l=Q( w^l;s_ w^l) and ^l=Qā”(l,sl) b^\,l=Q( b^l;s_ b^l) using blāb_l^* bits; 20: Optimize (slā,slā)(s_ w^l*,s_ b^l*) by minimizing (J^āJ0)2( J-J_0)^2; 21: Optimize lā V^l* and the scale factors by minimizing Ī»tāātask+ālāq _tL_task+L_lq; 22: end for 23: return ā³māpM_mp with blāl=1L\b_l^*\_l=1^L, ā s^*, and ā V^*. I-B Step 1: Acquire Sensitivity List Our approach begins with a full-precision pre-trained LIC network ā³M and constructs a per-block sensitivity list to guide the subsequent mixed-precision quantization process. The sensitivity list characterizes how sensitive each block is to quantization-induced perturbations, enabling the allocation of higher bit-widths to more sensitive blocks and lower bit-widths to more robust ones. A straightforward choice for measuring block sensitivity is the first-order gradient information. However, first-order metrics are often insufficient for accurately capturing layer-wise sensitivity, as they do not account for the curvature of the loss landscape [9]. To address this limitation, we adopt second-order information as the primary sensitivity metric. Specifically, we utilize the Hessian trace of the loss function with respect to the weights of each block, which reflects the local curvature and provides a more reliable indicator of how much the model output would change in response to weight perturbations introduced by quantization. Formally, for block BlB_l with weight parameters WlW_l, the Hessian matrix is defined as: Hl=ā2āāWl2H_l= ā^2Lā W_l^2 (3) where lā1,ā¦,Llā\1,ā¦,L\ and āL is the loss function defined over the calibration set. The Hessian trace Trā(Hl)Tr(H_l) serves as the sensitivity score for block BlB_l, with a larger trace value indicating greater sensitivity to quantization[9]. Direct computation of the full Hessian matrix is computationally prohibitive for large-scale neural networks. To ensure computational tractability, we instead estimate the Hessian trace efficiently via Hessian-vector products combined with randomized probing techniques, based on Hutchinsonās method [9, 8]. Once the Hessian trace is computed for all L blocks, the sensitivity scores are collected and ranked to form the sensitivity list =(Bl,Trā(Hl))l=1LS=\(B_l,Tr(H_l))\_l=1^L, which serves as the foundation for bit-width allocation in the subsequent step. I-C Step 2: Build Task-Oriented Sensitivity List While the Hessian trace obtained in Step 1 provides a geometry-aware measure of each blockās sensitivity to weight perturbations, it does not directly reflect the impact of quantization on the downstream compression task. To address this, we introduce a task-constrained sensitivity metric that couples the second-order curvature information with the task-specific rate-distortion loss, enabling a more accurate assessment of each blockās contribution to the overall model performance under quantization. Specifically, for each block BlB_l we define a task-aware sensitivity Ī©l _l as a composite measure that integrates both the potential sensitivity captured by the Hessian trace and the task-oriented loss degradation induced by quantization. Formally, Ī©l _l is expressed as: Ī©lā(bl)=Trā(Hl)ā |āqpā(bl)āāint8||āint8| _l(b_l)=Tr(H_l)Ā· |L_qp(b_l)-L_int8||L_int8| (4) where L is the number of quantizable blocks, blb_l is the weight bit-width assigned to the l-th block, Trā(Hl)Tr(H_l) is the Hessian trace of block BlB_l computed in Step 1, and |ā ||Ā·| denotes the absolute value. The term āqpā(bl)L_qp(b_l) denotes the task loss evaluated when the weights of block BlB_l are quantized to blb_l bits, while āint8L_int8 denotes the task loss of the reference model whose weights are uniformly quantized to 8 bits. The ratio |āqpā(bl)āāint8|/|āint8||L_qp(b_l)-L_int8|/|L_int8| measures the relative task loss degradation introduced by quantizing block BlB_l, which serves as a task-aware weighting factor to modulate the Hessian-based sensitivity. By combining these two terms, Ī©l _l captures both the geometric sensitivity of each block and its practical impact on the compression objective. For the i-th sample of an LIC model with a hyperprior structure, the rate-distortion (R-D) loss Ji=Jā”(xi,x^i,Īø)J_i=J(x_i, x_i;Īø) is defined as: Ji J_i =Ī»ā Di+R^,i+R^,i =λ· D_i+R_ Y,i+R_ Z,i (5) =Ī»ā Dā”(xi,x^i) =λ· D(x_i, x_i) +ā”[ālog2ā”(p^ā(^iā£^i))]+ā”[ālog2ā”(p^ā(^i))], +E\! [- _2\! (p_ Y( Y_i Z_i) ) ]+E\! [- _2\! (p_ Z( Z_i) ) ], where Ī» is the Lagrange multiplier that controls the trade-off between rate and distortion, R^,iR_ Y,i is the estimated bitrate for the quantized latent representation ^i Y_i, and R^,iR_ Z,i is the estimated bitrate for the hyperprior latent representation ^i Z_i. Dā”(xi,x^i)D(x_i, x_i) denotes the distortion between the original image xix_i and its reconstruction x^i x_i, which is typically measured by MSE or MS-SSIM depending on the target application. Given the task-aware sensitivities Ī©l\ _l\ defined in Eq. (4), the quantization problem is formulated as a constrained optimization that seeks the optimal per-block bit-width assignment bll=1L\b_l\_l=1^L to minimize the accumulated sensitivity-weighted loss degradationāan efficient proxy for the R-D loss Jāwhile satisfying the model compression ratio budget: argminblāl=1LĪ©l(bl) *argmin_\b_l\\ _l=1^L _l(b_l) (6) s.t.18āLāāl=1Lblā¤Ļµ .t.\ 18L _l=1^Lb_lā¤Īµ where ϵε is a hyperparameter controlling the overall compression ratio relative to 8-bit quantization, which is empirically set to ϵ=0.75ε=0.75 in our experiments; a 10% tolerance on the average bit-width is allowed in practice when enumerating candidate allocations. This constraint ensures that the average bit-width across all blocks does not exceed a prescribed budget, effectively limiting the model size overhead introduced by mixed-precision quantization. The detailed optimization procedure for solving this constrained problem is described in Section I-D. I-D Step 3: Mixed-Precision Bit-Width Allocation via Pareto Frontier Search Given the task-aware sensitivities Ī©l\ _l\ refined in Step I-C, this step solves the constrained optimization problem in Eq. (6) to determine the bit-width assignment for each block. Let B denote the set of admissible bit-widths of size k for each block, e.g., B=2,4,8B=\2,4,8\, and the bit-width blb_l assigned to each block in Eq. (6) must satisfy blāBb_lā B. The set ā¬B subsequently represents all feasible combinations of bit-widths across the entire network, where each element corresponds to a complete assignment b1,b2,ā¦,bL\b_1,b_2,ā¦,b_L\. When formulated as a combinatorial search problem, the bit allocation space grows exponentially with the number of blocks, reaching |ā¬|=kL|B|=k^L in the worst case. For example, with B=2,4,8B=\2,4,8\ and a model with L=50L=50 quantizable blocks, the search space is 350ā7.12Ć10233^50ā 7.12Ć 10^23, rendering exhaustive exploration computationally intractable. To reduce the search space, we adopt a Pareto frontier approach guided by the sensitivity list. Blocks are first sorted in descending order of their sensitivity scores, and the search is reformulated as a partition problem over the sorted list, restricting assignments to monotonically non-increasing order with respect to sensitivity rank. The reduced search space is then expressed as: |ā¬|=āj=1k(kj)ā (Lā1jā1)|B|= _j=1^k kjĀ· L-1j-1 (7) where j indexes the number of distinct bit-width levels used, (kj) kj counts the ways to select j bit-widths from k candidates, and (Lā1jā1) L-1j-1 counts the ways to partition L sorted blocks into j contiguous groups. This formulation reduces the search space from exponential to polynomial in L, making the search computationally feasible. For the same example (L=50L=50, k=3k=3), Eq. (7) yields |ā¬|=3+147+1176=1326|B|=3+147+1176=1326, a reduction of roughly 21 orders of magnitude compared with the exhaustive search space of 350ā7.12Ć10233^50ā 7.12Ć 10^23. In our implementation with k=3k=3, we enumerate the three-level partitions of the sorted list (the j=3j=3 terms), which dominate this reduced space. Each candidate allocation is evaluated by the objective in Eq. (6), and the assignment that minimizes the accumulated sensitivity while satisfying the model-size budget is selected as the final bit-width configuration. I-E Step 4: Task-Constraint Block-Wise Optimization After acquiring the optimal bit-width allocation for each block in Step 3, to further improve the quantization performance, we adopt task-constraint block-wise optimization, which can be divided by optimization target into two parts: scaling optimization (Section I-E1) and rounding optimization (Section I-E2). I-E1 Scaling Optimization We apply block-wise quantization to determine the optimal scale factors for weights and biases. The scale factors for the l-th block are obtained by minimizing the discrepancy between the quantized and full-precision rate-distortion loss: sl,sl=argā”minsl,slā(J^ā(^l,^l)āJ0ā(l,l))2s_ w^l,s_ b^l= s_ w^l,s_ b^l ( J ( w^l, b^l )-J_0 ( w^l, b^l ) )^2 (8) where J^ā(^l,^l) J( w^l, b^l) denotes the rate-distortion loss evaluated with the quantized weights ^l w^l and biases ^l b^l of the l-th block, J0ā(l,l)J_0( w^l, b^l) denotes the loss of the full-precision counterpart, and sls_ w^l, sls_ b^l are the scale factors for the weights and biases of the l-th block, respectively. The optimization proceeds sequentially from the first block to the last. When optimizing the l-th block, all preceding blocks have already been quantized with fixed parameters, while all subsequent blocks retain their full-precision parameters. I-E2 Rounding Optimization Rounding-to-nearest is a common default in PTQ but is suboptimal in general. Following AdaRound [24], AdaQuant [17], and BRECQ [22], we adopt an adaptive rounding strategy in which a learnable variable V is introduced to parameterize the rounding of weights, formally expressed as: argā”mināāĪā”(lāl)āĪā”(^lāl)ā2+βāfregā() V \| ( w^l x^l )- ( w^l x^l ) \|^2+β f_reg( V) (9) where Īā”(ā ) (Ā·) denotes the activation function and βāfregā()β f_reg( V) is a differentiable regularization term, weighted by β, that encourages the rounded weights w to converge to integer values [24]. The per-block quantization loss is accordingly defined as: ālāq=āĪā”(lāl)āĪā”(^lā^l)ā2+βāfregā()L_lq= \| ( w^l x^l )- ( w^l x^l ) \|^2+β f_reg( V) (10) where ^l x^l denotes the quantized input to the l-th block, accounting for the accumulated quantization error from preceding blocks. The total optimization loss jointly combines the task-level loss and the block-wise quantization loss: ā,ā=argā”min,āĪ»tāātask+ālāq s^*, V^*= s, V \ _tL_task+L_lq (11) where s denotes the collection of scale factors for both weights and biases across all blocks, and Ī»t _t is a balancing hyper-parameter empirically set to 11. The resulting mixed-precision quantized model ā³māpM_mp is obtained with the optimized scale factors ā s^*, rounding variables ā V^*, and per-block bit-width allocation bll=1L\b_l\_l=1^L. Fig. 2: Compression performance evaluation on the Kodak dataset (left) and the CLIC dataset (right). Traditional codecs and unquantized LIC models are represented by solid lines, while quantized LIC models are shown with dashed lines, with quantization bits indicated in brackets [Ā·]. Fig. 3: Visual comparison of the proposed HAMP-LIC method across different quality levels (Q6 to Q3) on CLIC, Kodak, and Tecnick datasets. PSNR (dB), MS-SSIM, and bit-rate (bpp) are reported for each reconstruction. IV Experiments In this section, experimental settings and datasets are first described in Sections IV-A. Subsequently, we conduct experiments to justify the superiority of the proposed algorithm. IV-A Implementation Details We first introduce the pretrained LIC models in Section IV-A1. Next, we display training details of the proposed HAMP-LIC in Section IV-A2. Then, comparison methods and datasets are described in Section IV-A3. IV-A1 Pretrained FP32 LICs Two representative LIC models are selected for evaluation: Minnen2018 [23] and Cheng2020 [6]. Both models are based on a hierarchical variational autoencoder (VAE) architecture. Minnen2018 introduced an autoregressive context model that, for the first time, brought LIC performance to a level comparable with the traditional image codec BPG/H.265. Cheng2020 replaced the single Gaussian prior with a discretized Gaussian mixture model, achieving performance comparable with VVC/H.266. Full-precision pre-trained models are obtained from the CompressAI library [4]. Both models are trained using MSE as the distortion metric in the R-D loss, formulated as Ī»ā 2552ā D+Rλ· 255^2Ā· D+R, where the Lagrange multiplier Ī» is selected from 0.0067,0.013,0.025,0.0483\0.0067,0.013,0.025,0.0483\, corresponding to four different rate-distortion operating points. IV-A2 Training Setup Training is performed with a calibration dataset, which only consists of 12 images randomly selected from the CLIC dataset. The proposed framework is optimized using the ADAM [21] optimizer with a learning rate of 0.001. The mini-batch size is 4, and the input image during training is cropped to 256 Ć 256. The optimization iterations for each block are 20,000. For the Hessian-trace estimation in Step I-B, we adopt Hutchinsonās method with 5 Rademacher random vectors per block over 12 calibration samples (mini-batch size 4). IV-A3 Comparison Methods and Datasets For quantization methods, we make comparisons with both fixed-precision and mixed-precision PTQ methods. The fixed-precision baselines include Range-Adaptive Quantization (RAQ) [14], task-oriented PTQ (RDO-PTQ) [25], and the fixed-precision variant (FPQ) reported in [15]. The mixed-precision baseline is Flexible Mixed Precision Quantization (FMPQ) [15]. Among these, RDO-PTQ and FMPQ are specifically designed for LIC models: RDO-PTQ is proposed for fixed-point PTQ, while FMPQ targets mixed-precision PTQ but is limited to an 8-bit weight quantization target. The proposed HAMP-LIC overcomes this limitation and achieves superior performance. For traditional image coders, we compare our results against the H.265/HEVC and H.266/VVC standards, using BPG software [5] and the VTM 23.11 test software [20], respectively. Both codecs were configured in all-intra mode with 8-bit YCbCr 4:4:4. Three benchmark datasets are used for evaluation: Kodak [7], Tecnick [1], and CLIC [11]. The Kodak dataset consists of 24 uncompressed images at 768Ć512768Ć 512 resolution. The Tecnick dataset contains 100 high-resolution images at 1200Ć12001200Ć 1200. The CLIC dataset refers to the professional validation set of the CLIC 2020 challenge, comprising 41 high-quality images with diverse content and resolutions. Model Method BD-Rate Loss (%) Compression Ratio Kodak Tecnick Cheng2020 RAQ 27.84 29.95 4x RDO-PTQ 2.95 5.09 4x FPQ 2.05 4.97 4x FMPQ 0.89 2.68 3.99x Proposed HAMP-LIC (w=6.6, a=32) 0.59 1.79 4.85x Proposed HAMP-LIC (w=6.6, a=8) 2.99 6.33 4.85x Minnen2018 RAQ 30.41 31.55 4x RDO-PTQ 1.19 4.01 4x FPQ 3.54 5.78 4x FMPQ 1.2 2.64 3.97x Proposed HAMP-LIC (w=6.6, a=32) 1.23 3.75 4.85x Proposed HAMP-LIC (w=6.6, a=8) 4.93 5.08 4.85x TABLE I: BD-Rate loss of various quantization methods relative to the original full-precision (FP32) LIC model. The āxā denotes the compression ratio of the weights; for instance, ā4xā corresponds to quantization from 32-bit floating-point to 8-bit integer precision. Model FP32 Model Proposed HAMP-LIC Encode/Decode Device CPU/GPU GPU/CPU CPU/GPU GPU/CPU Error Rate on Kodak 24/24 21/24 0/24 0/24 Error Rate on Tecnick 98/100 97/100 0/100 0/100 TABLE I: Decoding error rates of Cheng2020 during inference with and without PTQ. The encoding process is executed on one platform (CPU or GPU), whereas decoding is conducted on the other (GPU or CPU), where CPU/GPU denotes encoding on the CPU and decoding on the GPU. Fig. 4: Comparison of Hessian trace with Fisher matrix as the sensitivity metric used in Step 1. IV-B Evaluation In this section, we present the experimental results of the proposed HAMP-LIC method, including R-D performance (Section IV-B1), BD-rate comparison (Section IV-B2), subjective visual comparison (Section IV-B3), and encoding/decoding error rate (Section IV-B4). IV-B1 R-D Performance We evaluate the rate-distortion (R-D) efficiency by plotting PSNR (dB) against bit-rate (bpp) in Fig. 2. The comparison includes traditional codecs, full-precision anchors, and PTQ-quantized LIC models across the Kodak and CLIC datasets. The R-D curves demonstrate that our proposed HAMP-LIC method closely aligns with the floating-point models, showing negligible performance degradation even at ultra-low bit-rates. Compared to uniform PTQ and prior RDO-based approaches, HAMP-LIC achieves a superior R-D frontier, effectively narrowing the gap between quantized and full-precision performance. Furthermore, our method remains competitive with the VVC (VTM) standard. These results confirm that the mixed-precision strategy successfully preserves the modelās representation power while significantly enhancing computational efficiency for practical deployment. IV-B2 BD-Rate Comparison The proposed method is evaluated in comparison with existing PTQ approaches, using BD-rate loss relative to the full-precision models on two benchmark datasets, namely Kodak and Tecnick. As shown in Table I, the proposed HAMP-LIC achieves the highest model compression ratio (4.85Ć) among all compared methods. With full-precision activations (w=6.6, a=32), it also attains the lowest BD-rate loss on the Cheng2020 model (0.59% on Kodak and 1.79% on Tecnick), outperforming the mixed-precision FMPQ baseline (0.89% and 2.68%) despite the more aggressive weight compression, and it remains competitive on the Minnen2018 model. We also evaluate the proposed HAMP-LIC method with varying activation quantization bit widths. While quantizing activations does not reduce model size, it does impact compression performance. When reducing activation precision from full FP32 to 8-bit, the BD-rate loss increases by 2.40% and 4.54% for the Cheng2020 model on the Kodak and Tecnick datasets, respectively, and by 3.70% and 1.33% for the Minnen2018 model. The resulting fully quantized configuration (w=6.6, a=8) trades this modest BD-rate loss for reduced computation (see the BOPS analysis in Section IV-C4) and deterministic cross-platform decoding (Section IV-B4). These results indicate that HAMP-LIC preserves reconstruction quality at a substantially higher weight compression ratio than alternative quantization techniques such as RDO-PTQ and prior mixed-precision methods. IV-B3 Subjective Visual Comparison In Fig. 3, we present the subjective visual comparison across the CLIC, Kodak, and Tecnick datasets. The visualizations compare Original uncompressed images against reconstructions at decreasing quality levels from Q6 to Q3. The proposed method preserves complex textures and color fidelity exceptionally well at ultra-low bit allocations. As quality decreases to Q3 , bitrates drop significantly to 0.296 bpp , 0.162 bpp , and 0.078 bpp. Despite extreme compression, visual degradation is minimal, avoiding severe artifacts like blocking or over-smoothing. This high perceptual quality is supported by strong MS-SSIM scores of 0.951 , 0.960 , and 0.972 at Q3, directly corroborating the superior compression efficiency demonstrated in our BD-rate analysis. IV-B4 Encoding/Decoding Error Rate As shown in Table I, the FP32 model suffers from significant decoding errors when encoding and decoding are performed on different platforms (CPU/GPU or GPU/CPU). This indicates a severe lack of robustness and platform independence, likely caused by numerical non-determinism between the different hardware architectures (e.g., subtle differences in floating-point computation on CPUs vs. GPUs) [2, 13]. In contrast, the Proposed HAMP-LIC method reduces the error rate to zero on both datasets and for both cross-platform scenarios, ensuring reliable decoding regardless of the hardware used for encoding or decoding. IV-C Ablation Study IV-C1 Sensitivity Metric Analysis To further investigate the efficacy of various sensitivity measures, we conduct experiments using the Fisher information matrix as a substitute for the Hessian matrix. As presented in Fig. 4, it reveals that utilizing the Hessian matrix yields superior results compared to the Fisher matrix under the same bit-rate restriction. Second-order metrics like the Hessian are superior to first-order gradients because they capture the curvature of the loss landscape, not just its slope [9]. This provides a more accurate model of each parameterās sensitivity, leading to more effective optimization and higher-performance quantization. Fig. 5: Comparison of rate distortion performance between the proposed method (ϵ=0.65ε=0.65, average bit-width of 5.719) and the threshold-based baseline (boundaries at 30% and 70%, average bit-width of 6). Fig. 6: Bit-width distribution across the Cheng2020 model layers for four different quality levels. TABLE I: BOPS comparison across quality levels (input resolution 512Ć768512Ć 768, ba=8b^a=8). Quality Ī» MACs (G) BOPS-Mixed (G) BOPS-FP32 (G) vs. W8A8 Q3 0.0067 34.3 2007.5 35138.5 ā 8.6% Q4 0.0250 76.9 4628.2 78780.0 ā 6.0% Q5 0.0250 76.9 4652.6 78780.0 ā 5.5% Q6 0.0483 76.9 4661.9 78780.0 ā 5.3% IV-C2 Bit Allocation Methods To evaluate the bit allocation strategy from Step I-D, we compare the proposed optimization in Equation 6 against a baseline threshold approach. In the baseline, bits are assigned by thresholding the sensitivity list: the most sensitive 30 percent of blocks receive 8 bits, the middle 40 percent receive 6 bits, and the least sensitive 30 percent receive 4 bits, yielding an average bit-width of 6 bits. Conversely, the proposed method achieves a lower average bit-width of 5.719 with ϵε set to 0.65. Experimental results in Figure 5 show that the proposed method maintains rate distortion performance consistent with the baseline, even outperforming it at higher bitrates (bpp >> 0.6). These findings demonstrate that the proposed optimization effectively reduces average bit weight while preserving reconstruction quality. IV-C3 Bit Distribution for Each Layer We conduct a study of the bit-width distribution across the Cheng2020 model quantized via our HAMP-LIC method. In Fig. 6, we plot these distributions for four quality levels. The Cheng2020 model contains 57 quantizable layers: layers [0ā18] comprise the main encoder (gag_a), [19ā40] the main decoder (gsg_s), [41ā45] the hyper-encoder (hah_a), [46ā52] the hyper-decoder (hsh_s), and [53ā56] the entropy model (entropy parameters and context prediction). We observe that main-path weights (layers [0ā40]) are generally more sensitive to quantization, requiring higher bit-widths than hyper-path weights. Specifically, the last layers of the encoder (layer 18) and decoder (layer 39) necessitate high bit-widths, as they encode critical information regarding the latent representation and the reconstructed output image, respectively. IV-C4 BOPS Analysis To further quantify the computational savings of our FMPQ method, we evaluate the Bit Operations (BOPS) for each quality level, defined as: BOPS=āiMACsiĆbiwĆba,BOPS= _iMACs_iĆ b^w_iĆ b^a, (12) where MACsiMACs_i and biwb^w_i denote the multiply-accumulate operations and weight bit-width of layer i, respectively, and ba=8b^a=8 is the fixed activation bit-width. As reported in Table I, our mixed-precision quantization achieves BOPS of 2007.5 G, 4628.2 G, 4652.6 G, and 4661.9 G for quality levels Ī»ā0.0067,0.025,0.025,0.0483Ī»ā\0.0067,0.025,0.025,0.0483\, corresponding to reductions of 94.3%, 94.1%, 94.1%, and 94.1% relative to the full-precision (FP32) baseline. Compared to uniform 8-bit weight quantization (W8A8), our method further reduces BOPS by 8.6%, 6.0%, 5.5%, and 5.3%, respectively. This gain stems directly from the bit-width allocation described above: the hyper-path layers (hah_a and hsh_s, layers [41ā52]), which are identified as less sensitive by our Hessian-based metric, are predominantly assigned 4-bit weights, whereas W8A8 applies a fixed 8-bit budget uniformly. The main-path layers (gag_a and gsg_s, layers [0ā40]) retain higher bit-widths to preserve rate-distortion performance, contributing the majority of total BOPS. These results confirm that our sensitivity-aware bit allocation not only maintains reconstruction quality but also yields a measurable reduction in computational cost beyond that achieved by simple uniform low-bit quantization. V Conclusion In this paper, we presented HAMP-LIC, a Hessian-aware mixed-precision post-training quantization framework for deploying learned image compression models on resource-constrained hardware. HAMP-LIC combines Hessian-trace-based block sensitivity with a task-aware rateādistortion criterion, allocates bit widths through an efficient Pareto-frontier search, and applies block-wise reconstruction to reduce quantization error. Experiments on the Minnen2018 and Cheng2020 models across multiple benchmark datasets show that HAMP-LIC achieves up to 4.85Ć model compression with negligible BD-rate loss, outperforms existing fixed- and mixed-precision PTQ methods, and completely eliminates cross-platform encodingādecoding errors. Future work will extend HAMP-LIC to transformer-based LIC architectures, automate the selection of the compression-ratio hyperparameter ϵε, and reduce calibration overhead. References [1] N. Asuni and A. Giachetti (2013) TESTIMAGES: a large data archive for display and algorithm testing. J. Graph. Tools 17, p. 113ā125. External Links: Link Cited by: §IV-A3. [2] J. BallĆ©, N. Johnston, and D. Minnen (2019) Integer networks for data compression with latent-variable models. In International Conference on Learning Representations (ICLR), External Links: Link Cited by: §I, §I-A, §I-B, §IV-B4. [3] R. Banner, Y. Nahshan, E. Hoffer, and D. Soudry (2019) Post training 4-bit quantization of convolutional networks for rapid-deployment. In Advances in Neural Information Processing Systems (NeurIPS), Cited by: §I-A. [4] J. BĆ©gaint, F. Racapāe, S. Feltman, and A. Pushparaja (2020) CompressAI: a pytorch library and evaluation platform for end-to-end compression research. ArXiv abs/2011.03029. External Links: Link Cited by: §IV-A1. [5] Bellard (2014) BPG image format. Note: https://bellard.org/bpg/ Cited by: §IV-A3. [6] Z. Cheng, H. Sun, M. Takeuchi, and J. Katto (2020) Learned image compression with discretized gaussian mixture likelihoods and attention modules. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Vol. , p. 7936ā7945. External Links: Document Cited by: §IV-A1. [7] E. K. Company (1999) Kodak lossless true color image suite. Note: http://r0k.us/graphics/kodak/ Cited by: §IV-A3. [8] Z. Dong, Z. Yao, Y. Cai, D. Arfeen, A. Gholami, M. W. Mahoney, and K. Keutzer (2020) HAWQ-V2: hessian aware trace-weighted quantization of neural networks. In Neural Information Processing Systems (NIPS), Vol. 33, p. 18518ā18529. Cited by: §I-B. [9] Z. Dong, Z. Yao, A. Gholami, M. W. Mahoney, and K. Keutzer (2019) HAWQ: hessian aware quantization of neural networks with mixed-precision. In International Conference on Computer Vision (ICCV), p. 293ā302. Cited by: §I, §I-C, §I-C, §I-B, §I-B, §I-B, §IV-C1. [10] E. Frantar, S. Ashkboos, T. Hoefler, and D. Alistarh (2022) GPTQ: accurate post-training quantization for generative pre-trained transformers. In Advances in Neural Information Processing Systems (NeurIPS), Cited by: §I-A. [11] T. George, S. Wenzhe, T. Radu, T. Lucas, B. Johannes, A. Eirikur, J. Nick, and M. Fabian (2020) Workshop and challenge on learned image compression (clic2020). CVPR. External Links: Link Cited by: §IV-A3. [12] D. He, Z. Yang, Y. Chen, Q. Zhang, H. Qin, and Y. Wang (2022) Post-training quantization for cross-platform learned image compression. arXiv preprint arXiv:2202.07513. Cited by: §I. [13] D. He, Z. Yang, Y. Chen, Q. Zhang, H. Qin, and Y. Wang (2022) Post-training quantization for cross-platform learned image compression. CoRR abs/2202.07513. Cited by: §I, §I-A, §I-B, §IV-B4. [14] W. Hong, T. Chen, M. Lu, S. Pu, and Z. Ma (2021) Efficient neural image decoding via fixed-point inference. IEEE Transactions on Circuits and Systems for Video Technology (TCSVT) 31 (9), p. 3618ā3630. Cited by: §I, §I-B, §IV-A3. [15] M. A. F. Hossain, Z. Duan, and F. M. Zhu (2024) Flexible mixed precision quantization for learned image compression. IEEE International Conference on Multimedia and Expo (ICME), p. 1ā8. External Links: Link Cited by: §I, §IV-A3. [16] X. Huang, Z. Shen, S. Li, Z. Liu, X. Hu, J. Wicaksana, E. P. Xing, and K. Cheng (2022) SDQ: stochastic differentiable quantization with mixed precision. In International Conference on Machine Learning (ICML), Proceedings of Machine Learning Research, Vol. 162, p. 9295ā9309. Cited by: §I-C. [17] I. Hubara, Y. Nahshan, Y. Hanani, R. Banner, and D. Soudry (2020) Improving post training neural quantization: layer-wise calibration and integer programming. CoRR abs/2006.10518. Cited by: §I-A, §I-E2. [18] B. Jacob, S. Kligys, B. Chen, M. Zhu, M. Tang, A. Howard, H. Adam, and D. Kalenichenko (2018) Quantization and training of neural networks for efficient integer-arithmetic-only inference. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Cited by: §I-A. [19] S. Jung, C. Son, S. Lee, J. Son, J. Han, Y. Kwak, and S. J. Hwang (2019) Learning to quantize deep networks by optimizing quantization intervals with task loss. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Cited by: §I-A. [20] JVET (2018) VVC test model (vtm). Note: https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM Cited by: §IV-A3. [21] D. P. Kingma and J. Ba (2015) Adam: a method for stochastic optimization. International Conference for Learning Representations (ICLR). Cited by: §IV-A2. [22] Y. Li, R. Gong, X. Tan, Y. Yang, P. Hu, Q. Zhang, F. Yu, W. Wang, and S. Gu (2021) BRECQ: pushing the limit of post-training quantization by block reconstruction. In International Conference on Learning Representations (ICLR), External Links: Link Cited by: §I-A, §I-B, §I-E2. [23] D. Minnen, J. BallĆ©, and G. Toderici (2018) Joint autoregressive and hierarchical priors for learned image compression. Neural Information Processing Systems (NIPS). Cited by: §IV-A1. [24] M. Nagel, R. A. Amjad, M. van Baalen, C. Louizos, and T. Blankevoort (2020) Up or down? adaptive rounding for post-training quantization. In International Conference on Machine Learning (ICML), Cited by: §I-A, §I-E2, §I-E2. [25] J. Shi, M. Lu, and Z. Ma (2024) Rate-distortion optimized post-training quantization for learned image compression. IEEE Transactions on Circuits and Systems for Video Technology (TCSVT) 34 (5), p. 3082ā3095. Cited by: §I, §I-B, §I-A, §IV-A3. [26] H. Sun, L. Yu, and J. Katto (2025) Q-LIC: quantizing learned image compression with channel splitting. IEEE Transactions on Circuits and Systems for Video Technology (TCSVT) 35 (4), p. 3798ā3811. Cited by: §I-B, §I-A. [27] K. Wang, Z. Liu, Y. Lin, J. Lin, and S. Han (2019) HAQ: hardware-aware automated quantization with mixed precision. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Cited by: §I-C. [28] X. Wei, R. Gong, Y. Li, X. Liu, and F. Yu (2022) QDrop: randomly dropping quantization for extremely low-bit post-training quantization. In International Conference on Learning Representations (ICLR), Cited by: §I-A. [29] B. Wu, Y. Wang, P. Zhang, Y. Tian, P. Vajda, and K. Keutzer (2018) Mixed precision quantization of convnets via differentiable neural architecture search. CoRR abs/1812.00090. Cited by: §I-C. [30] L. Yang and Q. Jin (2021) FracBits: mixed precision quantization via fractional bit-widths. In Association for the Advancement of Artificial Intelligence (AAAI), p. 10612ā10620. Cited by: §I-C. [31] Y. Zhang, W. Shen, T. Gao, N. Zhang, and P. Wang (2026) MPP-lic: mixed precision post-training quantization for learned image compression. In 2026 Data Compression Conference (DCC), p. 487ā487. External Links: Document Cited by: §I. [32] Y. Zhou, S. Moosavi-Dezfooli, N. Cheung, and P. Frossard (2018) Adaptive quantization for deep neural network. In Association for the Advancement of Artificial Intelligence (AAAI), p. 4596ā4604. Cited by: §I-C.