Compute SR3-style conditional diffusion corruption, noise-prediction loss, and a deterministic scalar optimizer update.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add VectorSpaceLab/AREX-Skill --skill diffusion_noise_objective --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Diffusion Noise Objective?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vectorspacelab-diffusion-noise-objective)More formats (shields.io, HTML) on the badges page.
---
name: diffusion_noise_objective
description: Compute SR3-style conditional diffusion corruption, noise-prediction loss, and a deterministic scalar optimizer update.
---
# Diffusion Noise Objective
Use this skill when implementing or checking SR3 training logic. It owns timestep corruption, predicted-noise loss, and reduced scalar update math. Do not use it as a sampler.
## Inputs
- A pair with `condition` and `target`.
- A timestep value and beta/noise schedule value.
- A scalar denoiser parameter for reduced recovery.
## Outputs
- Noisy target, true noise, predicted noise, MSE loss, and updated parameter.
## Workflow
1. Compute a deterministic proxy noise value from the target and timestep.
2. Mix clean target and noise according to beta.
3. Predict noise from condition, noisy value, timestep, and the trainable scalar parameter.
4. Compute squared error and update the scalar parameter with gradient descent.
5. Record `params_before`, `params_after`, `loss_before`, and `loss_after` for validators.
## Validation
Run `python tests/test_noise_objective.py` or validate the skill tree with `--run-tests`.
## Limitations
The scalar parameter is a bounded proxy for a neural denoiser; it validates objective mechanics, not full model capacity.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!