A flexible configuration system for Python projects
Project description
[Documentation] | [Installation] | [Quick Start]
Hypster
is a lightweight configuration system for AI & Machine Learning projects.
It offers minimal, intuitive pythonic syntax, supporting hierarchical and swappable configurations.
Installation
You can install Hypster using pip:
pip install hypster
Quick Start
Here's a simple example of how to use Hypster:
from hypster import HP, config
@config
def my_config(hp: HP):
chunking_strategy = hp.select(['paragraph', 'semantic', 'fixed'], default='paragraph')
llm_model = hp.select({'haiku': 'claude-3-haiku-20240307',
'sonnet': 'claude-3-5-sonnet-20240620',
'gpt-4o-mini': 'gpt-4o-mini'}, default='gpt-4o-mini')
llm_config = {'temperature': hp.number(0),
'max_tokens': hp.number(64)}
system_prompt = hp.text('You are a helpful assistant. Answer with one word only')
Now we can instantiate the configs with our values:
results = my_config(final_vars=["chunking_strategy", "llm_config", "llm_model"],
values={"llm_model" : "haiku", "llm_config.temperature" : 0.5})
Inspiration
Hypster draws inspiration from Meta's hydra and hydra-zen framework. The API design is influenced by Optuna's "define-by-run" API.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the 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
File details
Details for the file hypster-0.2.33.tar.gz
.
File metadata
- Download URL: hypster-0.2.33.tar.gz
- Upload date:
- Size: 23.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.13.0 Darwin/24.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d703811db20e0d7df4206cff283c4bc85cd27f7a36ae115d39d1eca043058fd |
|
MD5 | bc32fb62de4ccda518972e6b5c00a303 |
|
BLAKE2b-256 | 62a8dc6d6e463e29e51856ac909eaf527dba3101f69fcb8a7d6a69d35361e082 |
File details
Details for the file hypster-0.2.33-py3-none-any.whl
.
File metadata
- Download URL: hypster-0.2.33-py3-none-any.whl
- Upload date:
- Size: 26.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.13.0 Darwin/24.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a53941d4558cc4255229510eefe52253a91229da930db77345237c71533a6b45 |
|
MD5 | c0fc3c51e928239fd0cafb3977fdc011 |
|
BLAKE2b-256 | 61a09175fe7336f01f14028f50fcdb79ad9156be46b7f8e7097b86368a1d1885 |