Yet another config mixin/manager.
Project description
configmixin
An ultra lightweight configuration management library for machine learning inspired by the Hugging Face 🤗 diffusers library. Add automatic configuration handling to any class with a simple mixin pattern. Please refer to the documentation for more details.
Features
- 🔗 Mixin Pattern: Add config management to models, trainers, or any class
- 💾 Save/Load: Automatic JSON serialization with type preservation
- ⚡ Decorator Support:
@register_to_configfor automatic parameter registration - 🎯 Selective Exclusion: Control which parameters are saved to config
Installation
From PyPI:
pip install just-config-mixin
If you are interested in the experimental (i.e., unstable and undertested) version, you can install it from GitHub:
pip install git+https://github.com/Guest400123064/configmixin.git
Core Use Cases
1. PyTorch Model with Configuration
import torch.nn as nn
from configmixin import ConfigMixin, register_to_config
class TransformerModel(nn.Module, ConfigMixin):
config_name = "model_config.json"
@register_to_config
def __init__(
self,
vocab_size: int = 30000,
hidden_size: int = 768,
num_layers: int = 12,
dropout: float = 0.1
):
super().__init__()
self.vocab_size = vocab_size
self.hidden_size = hidden_size
self.num_layers = num_layers
self.dropout = dropout
# Build model layers
self.embedding = nn.Embedding(vocab_size, hidden_size)
self.layers = nn.ModuleList([
nn.TransformerEncoderLayer(hidden_size, 8, batch_first=True)
for _ in range(num_layers)
])
model = TransformerModel(hidden_size=1024, num_layers=24)
print(model.config)
2. Configuration Save/Load
# Save configuration
model.save_config("./checkpoints/experiment_1")
# Load model with exact same configuration
loaded_model = TransformerModel.from_config(save_directory="./checkpoints/experiment_1")
# Or load from config dict
config_dict = {"vocab_size": 50000, "hidden_size": 512, "num_layers": 6, "dropout": 0.2}
model_from_dict = TransformerModel.from_config(config=config_dict)
# Access config as attributes
print(loaded_model.hidden_size)
print(loaded_model.config.num_layers)
3. Training Pipeline with Ignored Parameters
class ModelTrainer(ConfigMixin):
config_name = "trainer_config.json"
ignore_for_config = ["model", "optimizer"] # Exclude runtime objects
@register_to_config
def __init__(
self,
learning_rate: float = 1e-4,
batch_size: int = 32,
num_epochs: int = 100,
weight_decay: float = 0.01,
# Runtime objects (ignored)
model=None,
optimizer=None,
# Private params (auto-ignored due to underscore)
_internal_state=None
):
self.learning_rate = learning_rate
self.batch_size = batch_size
self.num_epochs = num_epochs
self.weight_decay = weight_decay
self.model = model
self.optimizer = optimizer
self._internal_state = _internal_state
# Only hyperparameters are saved, not runtime objects
trainer = ModelTrainer(
learning_rate=2e-4,
batch_size=64,
model=some_model,
optimizer=some_optimizer
)
trainer.save_config("./experiments/run_001")
# Config only contains: learning_rate, batch_size, num_epochs, weight_decay
# and the runtime objects are passed via `runtime_kwargs` in `from_config()`
trainer = ModelTrainer.from_config(save_directory="./experiments/run_001", runtime_kwargs={"model": <some_model>})
Complete Workflow
# Create components with configurations
model = TransformerModel(hidden_size=1024, num_layers=24)
trainer = ModelTrainer(learning_rate=1e-4, batch_size=64)
# Save all configurations to experiment directory
experiment_dir = "./experiments/run_001"
model.save_config(experiment_dir)
trainer.save_config(experiment_dir)
# Later: reproduce exact setup
loaded_model = TransformerModel.from_config(save_directory=experiment_dir)
loaded_trainer = ModelTrainer.from_config(save_directory=experiment_dir, runtime_kwargs={"model": loaded_model})
Why configmixin?
Perfect for ML workflows where you need:
- Reproducible experiments with exact parameter tracking
- Easy hyperparameter management built into your classes
- Clean separation between config and runtime state
Contributing
Contributions welcome! Please submit a Pull Request.
License
Apache License 2.0 - see LICENSE file for details.
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 just_config_mixin-0.1.1rc1.tar.gz.
File metadata
- Download URL: just_config_mixin-0.1.1rc1.tar.gz
- Upload date:
- Size: 16.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.4 CPython/3.12.3 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d87b7fc4034a434868afa6c5ca96f24d33b933a59d3cae13ccc53e938be388a7
|
|
| MD5 |
a59725660566fc172e72e7d2c0f75f43
|
|
| BLAKE2b-256 |
84f30940a7f93b0b025e69c50d54dfb15d32b18ab13b83fcc3ba4f457eea3d07
|
File details
Details for the file just_config_mixin-0.1.1rc1-py3-none-any.whl.
File metadata
- Download URL: just_config_mixin-0.1.1rc1-py3-none-any.whl
- Upload date:
- Size: 16.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.4 CPython/3.12.3 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
880941d3256dfd5839d7341865db79921b590ad69dae66c3a70e3b248be1efdd
|
|
| MD5 |
d367ed7374c53e2c9a7be90c981c4c67
|
|
| BLAKE2b-256 |
5f90e0001e2006715eaf4a5ec3c63266c3023a9fd207e7fba886732523ad5de2
|