Metadata-Version: 2.4
Name: configgle
Version: 0.1.1
Summary: Tools for making configurable Python classes for A/B experiements.
Project-URL: Repository, https://github.com/jvdillon/configgle
Author-email: "Joshua V. Dillon" <jvdillon@gmail.com>
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: ai,machine-learning
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.11
Requires-Dist: typing-extensions
Requires-Dist: wrapt
Description-Content-Type: text/markdown

# configgle 🤭
Tools for making configurable Python classes for A/B experiements.

## Installation

```bash
python -m pip install configgle
```

## Example

```python
from configgle import Fig

class Model:
    class Config(Fig):
        hidden_size: int = 256
        num_layers: int = 4

    def __init__(self, config: Config):
        self.config = config

# Create and modify config
config = Model.Config(hidden_size=512)

# Instantiate the parent class
model = config.setup()
print(model.config.hidden_size)  # 512
```

Or use `@autofig` to auto-generate the Config from `__init__`:

```python
from configgle import autofig

@autofig
class Model:
    def __init__(self, hidden_size: int = 256, num_layers: int = 4):
        self.hidden_size = hidden_size
        self.num_layers = num_layers

# Config is auto-generated from __init__ signature
model = Model.Config(hidden_size=512).setup()
print(model.hidden_size)  # 512
```

## References

configgle combines Python standard patterns (dataclasses) with hierarchical, class-local configuration.

The following libraries span these ideas but none wholly combine them:

- [Confugue](https://github.com/cifkao/confugue) - Hierarchical configuration with YAML-based object instantiation (most similar to configgle, but uses YAML rather than pure Python)
- [Fiddle](https://github.com/google/fiddle) - Python-first configuration library for ML
- [Gin Config](https://github.com/google/gin-config) - Lightweight configuration framework for Python
- [Sacred](https://github.com/IDSIA/sacred) - Tool to configure, organize, log and reproduce experiments
- [Hydra](https://github.com/facebookresearch/hydra) - Framework for elegantly configuring complex applications
- [ml_collections](https://github.com/google/ml_collections) - Python collections designed for ML use cases
- [OmegaConf](https://github.com/omry/omegaconf) - Flexible hierarchical configuration system

## License

Apache License 2.0
