
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
gradientnorm-autoclipper
Advanced tools
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:
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)
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.__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.FAQs
Clip gradient norm automatically
We found that gradientnorm-autoclipper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.