Compute Soft Actor-Critic maximum-entropy value and actor objective terms for bounded recovery experiments.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add VectorSpaceLab/AREX-Skill --skill sac_max_entropy_objective --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Sac Max Entropy Objective?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vectorspacelab-sac-max-entropy-objective)More formats (shields.io, HTML) on the badges page.
---
name: sac_max_entropy_objective
description: Compute Soft Actor-Critic maximum-entropy value and actor objective terms for bounded recovery experiments.
---
# SAC Maximum Entropy Objective
Use this skill when a recovery or implementation task needs the SAC formulas that combine reward-seeking Q-values with policy entropy. Do not use it to manage replay buffers or perform optimizer updates.
## Inputs
- Equal-length numeric lists of Q-values and log policy probabilities.
- Optional entropy coefficient `alpha`, defaulting to `1.0`.
## Outputs
- Elementwise soft values `q - alpha * log_prob`.
- Elementwise actor losses `alpha * log_prob - q`.
- Mean summaries for recovery metrics.
## Workflow
1. Validate the input lists are non-empty, equal length, and finite.
2. Compute soft values with the entropy term included.
3. Compute policy losses with the same alpha convention.
4. Save or return the summary for downstream SAC update checks.
## Validation
Run `python tests/test_objective.py` or validate the full skill tree with the Distiller validator.
## Limitations
This skill encodes deterministic scalar/list formulas only; full neural policies and temperature tuning belong to a larger training harness.
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!