Emotional optimizer wrappers for PyTorch training loops.
Project description
🌈 EmotiGrad — Emotional Support for Your Optimizers
EmotiGrad is a tiny Python library that wraps your PyTorch optimizers and gives you emotionally-charged feedback during training, from wholesome encouragement to unhinged sass.
It aims to be:
- Drop-in friendly: swap it into any
torch.optimworkflow - Fun but useful: emotional logs + basic training insights
- Extensible: easily add new "personalities" and behaviors
Features
- Drop-in PyTorch optimizer wrapper
- Emotional personalities with trend detection
message_every=Nsmoothing via averaged loss blocks- Extensible personality system (functions or classes)
- Built-in registry for named personalities
Why EmotiGrad?
Training deep learning models can be repetitive and opaque.
EmotiGrad adds a layer of emotional, trend-aware feedback that makes training:
- more fun
- more human
- easier to interpret
- easier to debug (loss trends are highlighted automatically)
Status
⚠️ EmotiGrad is under active early development (pre-release). Expect the API to evolve before version
0.1.0. Feedback and ideas are very welcome!
Installation
📦 PyPI Details: https://pypi.org/project/emotigrad/
EmotiGrad is available on PyPI for easy pip installation using the command below.
pip install emotigrad
For development:
git clone git@github.com:smiley-maker/emotigrad.git
cd emotigrad
pip install -e ".[dev]"
Requirements
- Python 3.10+
- PyTorch (installed automatically on most systems, but GPU users may want a custom install)
Quick Start
Here’s the smallest possible example:
import torch
from emotigrad import EmotionalOptimizer
model = torch.nn.Linear(10, 1)
base_opt = torch.optim.Adam(model.parameters(), lr=1e-3)
# Wrap your optimizer with a personality
opt = EmotionalOptimizer(
base_opt,
personality="wholesome", # also: "sassy", "quiet", custom callables, etc.
message_every=20, # feedback every 20 steps (averaged)
)
for step in range(50):
x = torch.randn(32, 10)
y = torch.randn(32, 1)
preds = model(x)
loss = (preds - y).pow(2).mean()
opt.zero_grad()
loss.backward()
# Provide loss to trigger feedback
opt.step(loss=loss.item())
How message_every works
Instead of reacting to every single (noisy) loss value, EmotiGrad:
- Collects the last N loss values
- Computes the average loss for that block
- Compares it to the previous block’s average
- Feeds the result into your chosen personality
This produces smoother, more meaningful emotional feedback.
Set message_every=1 for per-step chatter.
Example Output
Running the MNIST example (in examples/mnist_training.py) produces friendly, trend-aware messages like:
[Epoch 1] step=0, loss=2.3374
✨ Let's get started! Initial average loss: 0.9651
[Epoch 1] step=200, loss=0.2371
💖 Nice! Loss improved from 0.3914 → 0.3277.
💖 Nice! Loss improved from 0.3277 → 0.2768.
[Epoch 1] step=600, loss=0.1402
💖 Nice! Loss improved from 0.2588 → 0.2239.
💖 Nice! Loss improved from 0.2239 → 0.2199.
[Epoch 2] step=200, loss=0.1256
🌱 It's okay! Loss went from 0.1459 → 0.1465. Learning isn't always monotonic.
💖 Nice! Loss improved from 0.1702 → 0.1489.
Your model learns and your optimizer cheers you on.
Personalities
EmotiGrad ships with several built-in personalities, such as:
- wholesome – kind, encouraging, proud of your progress
- sassy – mildly offended by your gradients
- quiet – reports occasionally, like a stoic mentor
You can also write your own:
def hype(loss, prev, step):
if prev and loss < prev:
return f"🚀 Step {step}: HUGE gains! {prev:.4f} → {loss:.4f}"
return None
opt = EmotionalOptimizer(base_opt, personality=hype)
Or register them globally:
from emotigrad.personalities import register_personality
register_personality("hype", hype)
opt = EmotionalOptimizer(base_opt, personality="hype")
Examples
You can find examples in the examples/ directory:
basic_usage.py: minimal working examplemnist_training.py: full training loop with emotional feedbackcustom_personality.py: how to define your own personality
Roadmap
Planned features:
- More built-in emotional personas:
wholesome,sassy,quiet,chaotic,roaster,nervous, etc.
- Trend-aware training feedback
- Configurable output formatting (e.g. text colors and formatting)
- Easy hooks for custom personalities
- Optional LLM-based “training advisor” mode
- Integrations with:
- PyTorch Lightning
- HuggingFace Trainer
- Rich visual outputs (ASCII art, emoji graphs, etc.)
Contributing
Contributions are warmly welcome — even small improvements help!
Ways to contribute:
- Report bugs or confusing APIs
- Suggest new personalities or features
- Improve tests or documentation
- Add examples
To set up development:
git clone git@github.com:smiley-maker/emotigrad.git
cd emotigrad
pip install -e ".[dev]"
pytest
We also recommend using a virtual environment or conda during local development.
Running Tests
Run tests using:
pytest
Note that when using a virtual environment you made need to run with:
python -m pytest
Project Structure
emotigrad/
src/
emotigrad/
__init__.py
base.py # EmotionalOptimizer
personalities.py # built-in personas + registry
types.py # Personality Protocol
tests/
examples/
README.md
LICENSE
pyproject.toml
Changelog
0.0.1: First Release 🎉
EmotionalOptimizerclass with averaged-loss trend detection- Built-in personalities (wholesome, sassy, quiet) with more on the way.
- Personality registry and option to create your own personalities.
- Examples with initial documentation.
License
EmotiGrad is released under the MIT License. See the LICENSE file for details.
Thanks for checking out EmotiGrad
If you build something with it, please share it or open an issue, I’d love to see what you make! If you enjoy EmotiGrad, consider starring the repo, it helps others discover it! ⭐️
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file emotigrad-0.0.2.tar.gz.
File metadata
- Download URL: emotigrad-0.0.2.tar.gz
- Upload date:
- Size: 20.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
495c3e2d8410bdfd70d9a382f76fc70820656347807d139101cde01335d3b645
|
|
| MD5 |
a43535f8da8ce9bdcb49b3b36e7a3e45
|
|
| BLAKE2b-256 |
3d7f2745af7596485ca6d90adb6d5976adb5114ae0878fb8e33b9660bea08c4e
|
File details
Details for the file emotigrad-0.0.2-py3-none-any.whl.
File metadata
- Download URL: emotigrad-0.0.2-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86ca97bfa0d53b26a74dfb1f89392544c5d8b354ba35ec62deceb48d6b540277
|
|
| MD5 |
d28d9c57473fbf14aa47c9ff8fb27e04
|
|
| BLAKE2b-256 |
1029e8bda4e7a8a7f9c81bb944bbf3b8f015bae336f9a96ec81400c747adb3c3
|