Skip to main content

A Config System designed for experimental purposes

Project description

YAECS (Yet Another Experiment Config System)

License

GitHub last commit (branch) PyPI version

Documentation Status


Documentation: here

This package is a Config System which allows easy manipulation of config files for safe, clear and repeatable experiments. In a few words, it is:

  • built for Machine Learning with its constraints in mind, but also usable out-of-the-box for other kinds of projects ;
  • built with scalability in mind and can adapt just as easily to large projects investigating hundreds of well-organised parameters across many experiments ;
  • designed to encourage good coding practices for research purposes, and if used rigorously will ensure a number of highly desirable properties such that maintenance-less forward-compatibility of old configs, easy reproducibility of any experiment, and extreme clarity of former experiments for your future self or collaborators.

LINK TO DOCUMENTATION

Installation

The package can be installed from pipy:

pip install yaecs

Getting started

Getting started with using YAECS requires a single thing : creating a Configuration object containing your parameters. There are many ways to create this config object, but let us focus on the easiest one.

from yaecs import make_config

dictionary = {
    "batch_size": 32,
    "experiment_name": "overfit",
    "learning_rate": 0.001
}
config = make_config(dictionary)

And there you go, you have a config. You can query it using usual dictionary or object attribute getters such as :

print(config.batch_size)  # 32
print(config["experiment_name"])  # overfit
print(config.get("learning_rate", None))  # 0.001

At this point you might think that this is nothing more than a more fancy dictionary... and you'd be right, that's actually a very good way to think about your config. In fact, because it mostly behaves like a dictionary, it is much easier to integrate into existing code or libraries which expect dictionaries.

Of course, in many situations, it is much more than a simple dictionary, as we demonstrate thoughout our documentation. In this first introduction, we will cover two more things : loading a config from a yaml file, and some basic command line interaction. If you want more, we encourage you to keep reading our other tutorials in which we give practical tips and best practices for the management of your config over the course of a project.

The main purpose of using a config system is to manage your parameters more easily by getting them out of your code. So let's do just that :)

We will create a file called config.yaml in the root of our project, next to our main.py :

batch_size: 32
experiment_name: overfit
learning_rate: 0.001

Then, in your main.py, all you need to do is use the path to the file instead of the dictionary :

from yaecs import make_config

config = make_config("config.yaml")

print(config.batch_size)
print(config["experiment_name"])
print(config.get("learning_rate", None))

Now, if you run your script, you should see the same prints as before.

$ python main.py
[CONFIG] Building config from default : config
32
overfit
0.001

One way the YAECS config system provides to manage parameters is to edit them from the command line, which is performed automatically when you create your config. See for yourself :

$ python main.py --batch_size 16
[CONFIG] Building config from default : config
[CONFIG] Merging from command line : {'batch_size': 16}
16
overfit
0.001
$ python main.py --experiment_name=production --batch_size=16
[CONFIG] Building config from default : config
[CONFIG] Merging from command line : {'experiment_name': 'production', 'batch_size': 16}
16
production
0.001

The YAECS command line parser, one of YAECS' many ways of preparing your experiment's config, is very flexible and fast when you want to change only a handful of parameters.

This is as far as we go for this short introduction. If you're already used to config systems and managing config files, this might be enough to get you started. However, if you've always just used hardcoded values in your code, and maybe argparse, you might not really know where to start. We advise you to look at our tutorial (in DOCUMENTATION_WIP.md), which will walk you through config management using YAECS from early set-up to advanced usage.

Happy experimenting !

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yaecs-6.0.9.tar.gz (317.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

yaecs-6.0.9-py3-none-any.whl (110.5 kB view details)

Uploaded Python 3

File details

Details for the file yaecs-6.0.9.tar.gz.

File metadata

  • Download URL: yaecs-6.0.9.tar.gz
  • Upload date:
  • Size: 317.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for yaecs-6.0.9.tar.gz
Algorithm Hash digest
SHA256 042f835fecb6837d2002e1d264193228d55229f478313285d930e29393e3b9b1
MD5 38b2512e2b0847c34f129cd93bb7e4d9
BLAKE2b-256 cafb4d9f1f7177be02ad78adc9788bd09e55da22903eb6075e797857710b0d4b

See more details on using hashes here.

File details

Details for the file yaecs-6.0.9-py3-none-any.whl.

File metadata

  • Download URL: yaecs-6.0.9-py3-none-any.whl
  • Upload date:
  • Size: 110.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for yaecs-6.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 088727f9baa95496837307df92a2c95b66adf1be9947b2ca51cbdcf9f4b80d23
MD5 e2e13174299d8c94964c6aafd8bd0cc1
BLAKE2b-256 f0ff02c729b3a93918410f11ced8bec283b4cba95951a8567bb44023f7d863fc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page