Papers
Topics
Authors
Recent
Search
2000 character limit reached

Gradient Mask Mechanisms

Updated 6 July 2026
  • Gradient mask is a family of mechanisms that adjust gradient signals by selectively suppressing, rescaling, or conditioning updates during optimization.
  • It operates on parameters, losses, or spatial features, influencing tasks from image segmentation to federated learning.
  • Applications of gradient masks include improved convergence, targeted supervision, and enhanced robustness against adversarial updates.

Gradient mask denotes a family of mechanisms that suppress, rescale, or condition gradient-related signals during optimization, inference-time refinement, or auxiliary supervision. Across recent literature, the masked object ranges from per-parameter updates and example losses to spatial backpropagation paths, discriminator condition maps, client updates in federated learning, and prompt-refinement flows in segmentation. The mask may be binary or soft, static or recomputed each step, and may be derived from sign agreement, gradient magnitude, image gradients, saliency, or similarity structure (Shahtalebi et al., 2021, Li et al., 2024, Jiang et al., 2022, Paliwal et al., 2021, Lee et al., 13 Apr 2026).

1. Terminological scope and recurrent design patterns

Across the cited literature, “gradient mask” is not a single method but an overloaded design pattern. In some papers it denotes an operator applied directly to gradients before an optimizer step; in others it gates losses, selects data, conditions a discriminator with a gradient-derived spatial map, or uses decoder gradients to refine prompts. This multiplicity is central to the term’s history: the same phrase can describe a backpropagation-time gate, a task-specific parameter selector, or a spatial prior derived from image gradients.

Representative usages can be organized by the object being masked and by the signal that constructs the mask.

Usage Masked object Representative papers
Update masking Parameter gradients or updates SAND-mask, GMT, Gradient Routing
Loss/data masking Examples, tokens, sampled subsets GLMask, MAP-Net, DATAMASK
Spatial conditioning Discriminator inputs, photometric weights, saliency Raw video denoising, GAM-Depth, GradMask
Distributed masking Client updates in FL GMA, FedGMA, random masking against DLG
Test-time refinement Query embeddings and prompts via decoder gradients PR-MaGIC

A persistent axis of variation is binary versus soft masking. Hard masks appear in GLMask’s indicator $m(x,y)=\mathbbm{1}[g(x,y)>0]$, GMT’s top-percentile selector, and several federated-learning algorithms. Soft masks appear in SAND-mask’s tanh\tanh-based per-parameter weighting, GAM-Depth’s logistic photometric weights, and the soft gradient mask used to condition the discriminator in raw video denoising (Wang et al., 2021, Li et al., 2024, Tenison et al., 2022, Cheng et al., 2024, Paliwal et al., 2021).

2. Parameter-space and backpropagation-space masking

A major usage of gradient masks is to decide which parameters may update, or which backward paths may carry signal. In domain generalization, SAND-mask replaces hard AND-gating by a continuous per-parameter mask that depends on both sign agreement and magnitude agreement across environments. For parameter jj, it uses

σj2=var(Lj)avg(Lj)2\sigma_j^2 = \frac{\operatorname{var}(\nabla \mathcal L_j)}{\operatorname{avg}(\nabla \mathcal L_j)^2}

and

[mτ]j=max ⁣(0,  tanh ⁣(1σj2(1EeEsign([Le]j)τ))).[m_{\tau}]_j = \max\!\left( 0,\; \tanh\!\left( \frac{1}{\sigma_j^2} \left( \left| \frac{1}{|\mathcal E|} \sum_{e\in\mathcal E} \operatorname{sign}([\nabla\mathcal L_e]_j) \right| -\tau \right) \right) \right).

This converts cross-environment gradient consensus into a soft confidence weight rather than a Boolean gate, with the stated aim of reducing dead zones in the loss landscape. Empirically, SAND-mask improves ColoredMNIST under oracle validation from 58.6±0.458.6 \pm 0.4 to 62.3±1.062.3 \pm 1.0, but it underperforms AND-mask on Spirals, where training-domain validation drops from 88.0±2.988.0 \pm 2.9 to 49.2±5.449.2 \pm 5.4 (Shahtalebi et al., 2021).

In large-language-model fine-tuning, Gradient-Mask Tuning constructs a binary element-wise selector from accumulated gradient magnitudes. With

Γij=1Nn=1NθijL(Θ,Bn),\Gamma_{ij} = \frac{1}{N}\sum_{n=1}^{N} \nabla_{\theta_{ij}}\mathcal{L}(\Theta,\mathcal{B}_n),

the mask keeps only entries whose absolute value lies in the top tanh\tanh0 percentile. The operative update is therefore equivalent to

tanh\tanh1

with tanh\tanh2 iff tanh\tanh3 exceeds the threshold. The mask is recomputed during training rather than fixed, so a parameter masked at one step can become active later. Reported gains include Mistral-7B code-generation average tanh\tanh4 and Llama2-13B general-domain average tanh\tanh5 (Li et al., 2024).

Gradient Routing generalizes this idea from parameter coordinates to arbitrary edges in the computational graph. For each data point tanh\tanh6, the user specifies edge weights tanh\tanh7, and the routed derivative is defined recursively by

tanh\tanh8

In implementation, this is realized with stop-gradient constructs of the form

tanh\tanh9

so the forward pass is unchanged while the backward pass is selectively blocked or rescaled. The paper uses this to partition representations, localize capabilities for unlearning, and localize modules responsible for different behaviors (Cloud et al., 2024).

A related but simpler parameter-selection formulation appears in multi-scenario image restoration under adverse weather. There, for each weather condition jj0, a binary mask

jj1

selects the top jj2 of parameters by gradient magnitude, where jj3 is the jj4th percentile. The selected subset acts as task-specific parameters, while the remainder is treated as common, and the method adds no additional trainable parameters (Guo et al., 2024).

The paper explicitly titled “Gradient Mask” in CNNs pushes masking into intermediate feature gradients rather than parameter updates. It groups channels into sets, computes spatial maps of minicolumn norms, filters them with a Laplacian of Gaussian, thresholds the result, and multiplies the resulting binary mask into the backward tensor. On CIFAR-100, ResNet-18 improves from jj5 to jj6; on ImageNet, ResNet-50 improves from jj7 to jj8 (Jiang et al., 2022).

3. Gradient-guided masking of examples, losses, and corpora

Another line of work masks not parameters but data contributions. In neural machine translation, Gradient-guided Loss Masking defines the alignment score

jj9

using a small trusted clean set as reference, and then applies the binary gate

σj2=var(Lj)avg(Lj)2\sigma_j^2 = \frac{\operatorname{var}(\nabla \mathcal L_j)}{\operatorname{avg}(\nabla \mathcal L_j)^2}0

The masked objective becomes

σj2=var(Lj)avg(Lj)2\sigma_j^2 = \frac{\operatorname{var}(\nabla \mathcal L_j)}{\operatorname{avg}(\nabla \mathcal L_j)^2}1

The method is evaluated at sentence and word level, with word-level masking performing best. On WMT, GLMask-word reaches σj2=var(Lj)avg(Lj)2\sigma_j^2 = \frac{\operatorname{var}(\nabla \mathcal L_j)}{\operatorname{avg}(\nabla \mathcal L_j)^2}2 BLEU for en-de, σj2=var(Lj)avg(Lj)2\sigma_j^2 = \frac{\operatorname{var}(\nabla \mathcal L_j)}{\operatorname{avg}(\nabla \mathcal L_j)^2}3 for en-zh, and σj2=var(Lj)avg(Lj)2\sigma_j^2 = \frac{\operatorname{var}(\nabla \mathcal L_j)}{\operatorname{avg}(\nabla \mathcal L_j)^2}4 for en-fr, improving over the Vanilla baseline σj2=var(Lj)avg(Lj)2\sigma_j^2 = \frac{\operatorname{var}(\nabla \mathcal L_j)}{\operatorname{avg}(\nabla \mathcal L_j)^2}5, σj2=var(Lj)avg(Lj)2\sigma_j^2 = \frac{\operatorname{var}(\nabla \mathcal L_j)}{\operatorname{avg}(\nabla \mathcal L_j)^2}6, and σj2=var(Lj)avg(Lj)2\sigma_j^2 = \frac{\operatorname{var}(\nabla \mathcal L_j)}{\operatorname{avg}(\nabla \mathcal L_j)^2}7 respectively (Wang et al., 2021).

In masked-language-model pretraining, MAP-Net treats the random choice of masked positions as an additional source of stochastic-gradient variance. Its variance decomposition theorem states that MLM gradients contain a sentence-sampling variance term plus a mask-sampling variance term. The theoretically optimal proposal distribution over masks is proportional to the gradient norm,

σj2=var(Lj)avg(Lj)2\sigma_j^2 = \frac{\operatorname{var}(\nabla \mathcal L_j)}{\operatorname{avg}(\nabla \mathcal L_j)^2}8

and the practical system approximates this by a learned proposal network trained with a loss-based surrogate. Empirically, the method converges faster than baseline BERT and reaches GLUE average σj2=var(Lj)avg(Lj)2\sigma_j^2 = \frac{\operatorname{var}(\nabla \mathcal L_j)}{\operatorname{avg}(\nabla \mathcal L_j)^2}9 versus [mτ]j=max ⁣(0,  tanh ⁣(1σj2(1EeEsign([Le]j)τ))).[m_{\tau}]_j = \max\!\left( 0,\; \tanh\!\left( \frac{1}{\sigma_j^2} \left( \left| \frac{1}{|\mathcal E|} \sum_{e\in\mathcal E} \operatorname{sign}([\nabla\mathcal L_e]_j) \right| -\tau \right) \right) \right).0 at [mτ]j=max ⁣(0,  tanh ⁣(1σj2(1EeEsign([Le]j)τ))).[m_{\tau}]_j = \max\!\left( 0,\; \tanh\!\left( \frac{1}{\sigma_j^2} \left( \left| \frac{1}{|\mathcal E|} \sum_{e\in\mathcal E} \operatorname{sign}([\nabla\mathcal L_e]_j) \right| -\tau \right) \right) \right).1k steps, while the [mτ]j=max ⁣(0,  tanh ⁣(1σj2(1EeEsign([Le]j)τ))).[m_{\tau}]_j = \max\!\left( 0,\; \tanh\!\left( \frac{1}{\sigma_j^2} \left( \left| \frac{1}{|\mathcal E|} \sum_{e\in\mathcal E} \operatorname{sign}([\nabla\mathcal L_e]_j) \right| -\tau \right) \right) \right).2k-step MAP-Net checkpoint is reported as almost on par with the [mτ]j=max ⁣(0,  tanh ⁣(1σj2(1EeEsign([Le]j)τ))).[m_{\tau}]_j = \max\!\left( 0,\; \tanh\!\left( \frac{1}{\sigma_j^2} \left( \left| \frac{1}{|\mathcal E|} \sum_{e\in\mathcal E} \operatorname{sign}([\nabla\mathcal L_e]_j) \right| -\tau \right) \right) \right).3k-step BERT baseline (Chen, 2020).

A later extension shifts the masking target from examples within a minibatch to documents within a trillion-token corpus. DATAMASK formulates data selection as optimization over a binary subset mask [mτ]j=max ⁣(0,  tanh ⁣(1σj2(1EeEsign([Le]j)τ))).[m_{\tau}]_j = \max\!\left( 0,\; \tanh\!\left( \frac{1}{\sigma_j^2} \left( \left| \frac{1}{|\mathcal E|} \sum_{e\in\mathcal E} \operatorname{sign}([\nabla\mathcal L_e]_j) \right| -\tau \right) \right) \right).4, then learns sampling logits with REINFORCE-style policy gradients and grouped relative advantage normalization. In the reported FineWeb experiment it selects about [mτ]j=max ⁣(0,  tanh ⁣(1σj2(1EeEsign([Le]j)τ))).[m_{\tau}]_j = \max\!\left( 0,\; \tanh\!\left( \frac{1}{\sigma_j^2} \left( \left| \frac{1}{|\mathcal E|} \sum_{e\in\mathcal E} \operatorname{sign}([\nabla\mathcal L_e]_j) \right| -\tau \right) \right) \right).5 of a [mτ]j=max ⁣(0,  tanh ⁣(1σj2(1EeEsign([Le]j)τ))).[m_{\tau}]_j = \max\!\left( 0,\; \tanh\!\left( \frac{1}{\sigma_j^2} \left( \left| \frac{1}{|\mathcal E|} \sum_{e\in\mathcal E} \operatorname{sign}([\nabla\mathcal L_e]_j) \right| -\tau \right) \right) \right).6 trillion-token corpus, reduces selection time by [mτ]j=max ⁣(0,  tanh ⁣(1σj2(1EeEsign([Le]j)τ))).[m_{\tau}]_j = \max\!\left( 0,\; \tanh\!\left( \frac{1}{\sigma_j^2} \left( \left| \frac{1}{|\mathcal E|} \sum_{e\in\mathcal E} \operatorname{sign}([\nabla\mathcal L_e]_j) \right| -\tau \right) \right) \right).7 compared to a greedy algorithm, and improves average evaluation by [mτ]j=max ⁣(0,  tanh ⁣(1σj2(1EeEsign([Le]j)τ))).[m_{\tau}]_j = \max\!\left( 0,\; \tanh\!\left( \frac{1}{\sigma_j^2} \left( \left| \frac{1}{|\mathcal E|} \sum_{e\in\mathcal E} \operatorname{sign}([\nabla\mathcal L_e]_j) \right| -\tau \right) \right) \right).8 on a [mτ]j=max ⁣(0,  tanh ⁣(1σj2(1EeEsign([Le]j)τ))).[m_{\tau}]_j = \max\!\left( 0,\; \tanh\!\left( \frac{1}{\sigma_j^2} \left( \left| \frac{1}{|\mathcal E|} \sum_{e\in\mathcal E} \operatorname{sign}([\nabla\mathcal L_e]_j) \right| -\tau \right) \right) \right).9B dense model and 58.6±0.458.6 \pm 0.40 on a 58.6±0.458.6 \pm 0.41B MoE model (Fan et al., 30 Dec 2025).

4. Spatial, saliency, and masked-reconstruction uses in perception and speech

In vision restoration, “gradient mask” often denotes a spatial map derived from image gradients rather than parameter gradients. In raw video denoising, the mask is computed from the clean grayscale frame by taking horizontal and vertical gradients, filtering them with a 58.6±0.458.6 \pm 0.42 box filter, forming a magnitude 58.6±0.458.6 \pm 0.43, and defining

58.6±0.458.6 \pm 0.44

This soft mask conditions the discriminator so that high-frequency detail is expected in textured regions but discouraged in smooth areas. In the ablation table, adding adversarial loss alone reduces LPIPS from 58.6±0.458.6 \pm 0.45 to 58.6±0.458.6 \pm 0.46 but lowers fidelity, whereas adding the gradient mask yields Raw PSNR 58.6±0.458.6 \pm 0.47, SSIM 58.6±0.458.6 \pm 0.48; sRGB PSNR 58.6±0.458.6 \pm 0.49, SSIM 62.3±1.062.3 \pm 1.00; and LPIPS 62.3±1.062.3 \pm 1.01, improving both perceptual quality and fidelity over the non-adversarial baseline (Paliwal et al., 2021).

In self-supervised indoor depth estimation, GAM-Depth introduces a gradient-aware photometric weight

62.3±1.062.3 \pm 1.02

where 62.3±1.062.3 \pm 1.03 is a Sobel-based image-gradient magnitude, 62.3±1.062.3 \pm 1.04, 62.3±1.062.3 \pm 1.05, and 62.3±1.062.3 \pm 1.06. The weighted minimum-reprojection loss

62.3±1.062.3 \pm 1.07

is designed to weight high-gradient pixels strongly while preserving nonzero supervision in textureless regions. The reported ablation improves AbsRel from 62.3±1.062.3 \pm 1.08 to 62.3±1.062.3 \pm 1.09, RMS from 88.0±2.988.0 \pm 2.90 to 88.0±2.988.0 \pm 2.91, and 88.0±2.988.0 \pm 2.92 from 88.0±2.988.0 \pm 2.93 to 88.0±2.988.0 \pm 2.94 when 88.0±2.988.0 \pm 2.95 is added alone (Cheng et al., 2024).

In medical imaging, GradMask uses lesion segmentations to penalize classifier saliency outside the lesion. One form is

88.0±2.988.0 \pm 2.96

and a contrast variant penalizes the saliency of 88.0±2.988.0 \pm 2.97 outside the lesion. The strongest reported gain is on Liver Seg, where test AUC improves from 88.0±2.988.0 \pm 2.98 to 88.0±2.988.0 \pm 2.99, although Brain Tumor degrades from 49.2±5.449.2 \pm 5.40 to 49.2±5.449.2 \pm 5.41 (Simpson et al., 2019).

In end-to-end ASR, Gradient Mask modifies pseudo-label training rather than image-space supervision. Pseudo-labeled acoustic frames are masked at the input, encoder gradients are kept only on masked positions, and the prediction network is stop-gradiented: 49.2±5.449.2 \pm 5.42 The loss remains the standard transducer loss. On LibriSpeech 49.2±5.449.2 \pm 5.43h semi-supervised training, NST-iter1 reports test 49.2±5.449.2 \pm 5.44, GM-iter1 reports 49.2±5.449.2 \pm 5.45, and GM-iter5 reaches 49.2±5.449.2 \pm 5.46 on test-clean/test-other (Ling et al., 2021).

5. Federated learning, privacy, and robustness

Federated learning has produced two distinct meanings of gradient mask: server-side aggregation masks that improve robustness to heterogeneity, and client-side obfuscation masks that reduce leakage. In Gradient Masked Averaging, the server computes cross-client sign agreement

49.2±5.449.2 \pm 5.47

and defines

49.2±5.449.2 \pm 5.48

The masked update is 49.2±5.449.2 \pm 5.49. The paper reports that Γij=1Nn=1NθijL(Θ,Bn),\Gamma_{ij} = \frac{1}{N}\sum_{n=1}^{N} \nabla_{\theta_{ij}}\mathcal{L}(\Theta,\mathcal{B}_n),0 worked best across datasets and algorithms, and gives non-IID gains such as CIFAR-100 FedAvg Γij=1Nn=1NθijL(Θ,Bn),\Gamma_{ij} = \frac{1}{N}\sum_{n=1}^{N} \nabla_{\theta_{ij}}\mathcal{L}(\Theta,\mathcal{B}_n),1 and FedAdam Γij=1Nn=1NθijL(Θ,Bn),\Gamma_{ij} = \frac{1}{N}\sum_{n=1}^{N} \nabla_{\theta_{ij}}\mathcal{L}(\Theta,\mathcal{B}_n),2 (Tenison et al., 2022).

FedGMA uses a harder AND-mask derived from sign agreement across participating clients. Coordinates are retained only when at least a fraction Γij=1Nn=1NθijL(Θ,Bn),\Gamma_{ij} = \frac{1}{N}\sum_{n=1}^{N} \nabla_{\theta_{ij}}\mathcal{L}(\Theta,\mathcal{B}_n),3 of clients agree in sign, with Γij=1Nn=1NθijL(Θ,Bn),\Gamma_{ij} = \frac{1}{N}\sum_{n=1}^{N} \nabla_{\theta_{ij}}\mathcal{L}(\Theta,\mathcal{B}_n),4 in the experiments. On MNIST IID, the number of communication rounds to reach Γij=1Nn=1NθijL(Θ,Bn),\Gamma_{ij} = \frac{1}{N}\sum_{n=1}^{N} \nabla_{\theta_{ij}}\mathcal{L}(\Theta,\mathcal{B}_n),5 test accuracy drops from Γij=1Nn=1NθijL(Θ,Bn),\Gamma_{ij} = \frac{1}{N}\sum_{n=1}^{N} \nabla_{\theta_{ij}}\mathcal{L}(\Theta,\mathcal{B}_n),6 for FedAVG to Γij=1Nn=1NθijL(Θ,Bn),\Gamma_{ij} = \frac{1}{N}\sum_{n=1}^{N} \nabla_{\theta_{ij}}\mathcal{L}(\Theta,\mathcal{B}_n),7 for FedGMA; in the non-IID setting, FedGMA without mask needs Γij=1Nn=1NθijL(Θ,Bn),\Gamma_{ij} = \frac{1}{N}\sum_{n=1}^{N} \nabla_{\theta_{ij}}\mathcal{L}(\Theta,\mathcal{B}_n),8 rounds and FedGMA with mask needs Γij=1Nn=1NθijL(Θ,Bn),\Gamma_{ij} = \frac{1}{N}\sum_{n=1}^{N} \nabla_{\theta_{ij}}\mathcal{L}(\Theta,\mathcal{B}_n),9 (Tenison et al., 2021).

For privacy against Deep Leakage from Gradients, random gradient masking means independently setting transmitted entries to NaN with probability tanh\tanh00, so that they are ignored in aggregation. The selected threshold is tanh\tanh01. Under the paper’s brightness-corrected SSIM evaluation, no defense yields tanh\tanh02 on MNIST, tanh\tanh03 on CIFAR-10, and tanh\tanh04 on LFW, whereas masking with tanh\tanh05 reduces these to tanh\tanh06, tanh\tanh07, and tanh\tanh08, while showing near to none degradation in training performance (Kim et al., 2024).

A different and cautionary use of the phrase appears in adversarial-robustness analysis. There, “gradient masking” is not a designed regularizer but a pathology in which gradients become uninformative for attack optimization. Training with DP-SGD under high noise and large clipping norms can induce this effect, causing PGD to plateau while CW and Boundary Attack still succeed; the paper presents this as a wrong sense of security rather than a beneficial masking mechanism (Boenisch et al., 2021).

6. Conceptual boundaries, extensions, and recurrent limitations

A central conceptual boundary is between masking gradients and masking with gradients. Raw-video denoising and GAM-Depth do not zero parameter gradients directly; they use gradient-derived spatial maps to condition adversarial learning or to weight photometric loss. GLMask and MAP-Net instead use gradient information to decide which examples, tokens, or masks should contribute. Parameter-selection methods such as SAND-mask, GMT, and Gradient-Guided Parameter Mask act directly on update flow. The same term therefore spans several operator types, and implementation details often matter more than the name.

A second boundary separates beneficial masking operators from adversarial-robustness “gradient masking.” The former intentionally structure optimization or supervision; the latter indicates that gradients are unusable and robustness estimates are misleading. This distinction is explicit in the DP study, which shows that high-noise, high-clipping private models can appear robust under PGD while remaining highly vulnerable to CW, Boundary Attack, and transfer attacks (Boenisch et al., 2021).

Reported limitations are similarly heterogeneous. SAND-mask improves ColoredMNIST but is substantially worse than AND-mask on Spirals (Shahtalebi et al., 2021). GAM-Depth improves its own baseline and SC-DepthV3, yet degrades StructDepth from AbsRel tanh\tanh09 to tanh\tanh10 and tanh\tanh11 from tanh\tanh12 to tanh\tanh13 when tanh\tanh14 is added (Cheng et al., 2024). The ASR Gradient Mask is beneficial under noisy pseudo-labels but hurts with clean labels: on dev-other, the reference-label condition is tanh\tanh15 with GM versus tanh\tanh16 without GM, and pseudo WER-tanh\tanh17 is tanh\tanh18 versus tanh\tanh19 (Ling et al., 2021). GradMask improves several medical datasets but worsens BraTS (Simpson et al., 2019).

Recent work also extends the masking idiom beyond training-time parameter updates. PR-MaGIC refines SAM prompts at test time by updating the query embedding with mask-decoder gradient flow,

tanh\tanh20

then re-sampling prompts and selecting the best candidate mask by a top-1 support-query similarity score. Gains are substantial in several one-/few-shot segmentation settings, including PerSAM-F on FSS tanh\tanh21 and Matcher tanh\tanh22-shot on DIS5K tanh\tanh23, but the paper also reports non-monotonic refinement dynamics and class-dependent sensitivity to step size (Lee et al., 13 Apr 2026).

Adjacent notions further widen the term’s boundary. Mask-PINNs introduces a smooth learnable pointwise mask

tanh\tanh24

applied to hidden activations in PINNs. The paper does not call this a gradient mask, but explicitly argues that its multiplicative structure attenuates gradient-variance growth near initialization and reports relative tanh\tanh25 error reductions by up to two orders of magnitude (Jiang et al., 9 May 2025). Attribution Mask likewise constructs input masks from gradient-based attributions rather than masking gradients themselves; under the paper’s no implicit bias condition, GxSI-based attribution masks yield tanh\tanh26 to tanh\tanh27 accuracy on modified CIFAR-10 without additional training (Lee et al., 2021). These works suggest that the term’s practical scope now includes both direct gradient gates and nearby mechanisms that regulate learning by controlling gradient-derived or gradient-modulating signals.

Definition Search Book Streamline Icon: https://streamlinehq.com
References (19)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Gradient Mask.