New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gradientnorm-autoclipper

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gradientnorm-autoclipper

Clip gradient norm automatically

  • 1.0.0
  • PyPI
  • Socket score

Maintainers
1

AutoClipper

AutoClippedOptimizer is a Python factory function that returns an optimizer class with automatic gradient clipping. This feature can help to stabilize training in certain situations by limiting the magnitude of gradient updates.

The implementation is inspired by the paper "AutoClip: Adaptive Gradient Clipping for Source Separation Networks" (https://arxiv.org/abs/2007.14469) with two key differences:

  1. Instead of keeping track of the whole grad norm history, it limits its size to a specified window.
  2. It enables setting a max_norm to clamp the max grad norm value.

Usage

from autoclipper import AutoClippedOptimizer

# Create a new optimizer class with automatic gradient clipping
optimizer_cls = AutoClippedOptimizer(optimizer_cls, q=0.1, window=200, max_norm=None)

# Use the new optimizer class in your training loop
optimizer = optimizer_cls(model.parameters(), lr=0.01)

Parameters

  • optimizer_cls (Type[Optimizer]): The base optimizer class to extend with automatic gradient clipping.
  • q (float, optional): The quantile at which to clip gradients. Gradients with norms larger than the q-th quantile of recent gradient norms are clipped. Default is 0.1.
  • window (int, optional): The number of recent gradient norms to consider when computing the q-th quantile for clipping. Default is 200.
  • max_norm (float, optional): An optional maximum gradient norm. If provided, gradients with norms larger than this value are always clipped to this value. Default is None, which means no absolute maximum gradient norm is enforced.

Methods

  • __init__(self, *args, **kwargs): Initializes the optimizer.
  • _get_grad_norm(self): Calculates the norm of the gradient for the current step.
  • _autoclip_gradients(self): Automatically clips the gradients based on the recent gradient norms.
  • _main_params(self): Yields the main parameters of the optimizer.
  • step(self, closure=None, **kwargs): Performs a single optimization step.
  • reset(self): Resets the state of the optimizer.

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc