py-gen-ml
Typed ML configuration tooling, generated from Protocol Buffer schemas.
🌟 Project Introduction
py-gen-ml simplifies the configuration and management of machine learning projects. You define your config schema in Protocol Buffers (protobufs). A deterministic protoc plugin then generates strongly typed Pydantic models, JSON Schemas, patch and sweep types, and optional Typer CLIs. The schema you write is the single source of truth from which the rest of the config tooling is derived.
🧭 What this is (and isn't)
What this is:
- You author
.protofiles that describe your ML configuration. - You run
py-gen-ml, which invokes theprotoc-gen-py-mlplugin. That is ordinary schema-driven code generation. - From that schema you get base configs, patches, sweeps, JSON Schemas for YAML validation, CLI parsers, and optional factories.
What this isn't:
- Not an LLM. Nothing here invents schemas, protobufs, or training code from a prompt.
- Not “AI generates your protobufs.” The direction is the opposite: protobuf → ML config tooling.
🔄 How it fits together
flowchart LR
proto["You write .proto"] --> cli["py-gen-ml / protoc plugin"]
cli --> base["Base Pydantic models"]
cli --> patch["Patch models"]
cli --> sweep["Sweep models"]
cli --> jsonSchema["JSON Schemas"]
cli --> typerCli["CLI args / entrypoint"]
base --> train["Your training code"]
patch --> train
sweep --> train
typerCli --> train
| Artifact | What it's for |
|---|---|
| Base models | Load and validate full YAML configs |
| Patch models | Overlay small experiment deltas on a base |
| Sweep models | Define Optuna search spaces in YAML |
| JSON Schemas | Validate YAML as you type in the IDE |
| CLI / entrypoint | Override nested fields from the command line |
| Factories | Optional build() helpers from (pgml.factory) |
✨ Brief Overview
A real quick overview of what you can do with py-gen-ml:
- Define protos
- Generated Base Model
- Generated Patch Config
class MLPQuickstartPatch(pgml.YamlBaseModel): """Multi-layer perceptron configuration""" num_layers: typing.Optional[int] = None """Number of layers""" num_units: typing.Optional[int] = None """Number of units""" activation: typing.Optional[str] = None """Activation function"""
- Generated Sweep Config
class MLPQuickstartSweep(pgml.Sweeper[patch.MLPQuickstartPatch]): """Multi-layer perceptron configuration""" num_layers: typing.Optional[pgml.IntSweep] = None """Number of layers""" num_units: typing.Optional[pgml.IntSweep] = None """Number of units""" activation: typing.Optional[pgml.StrSweep] = None """Activation function"""
- Generated CLI Parser
class MLPQuickstartArgs(pgml.YamlBaseModel): """Multi-layer perceptron configuration""" num_layers: typing.Annotated[ typing.Optional[int], typer.Option(help="Number of layers. Maps to 'num_layers'"), pydantic.Field(None), pgml.ArgRef("num_layers"), ] """Number of layers""" num_units: typing.Annotated[ typing.Optional[int], typer.Option(help="Number of units. Maps to 'num_units'"), pydantic.Field(None), pgml.ArgRef("num_units"), ] """Number of units""" # Remaining code...
- Generated Entrypoint
@pgml.pgml_cmd(app=app) def main( config_paths: typing.List[str] = typer.Option(..., help="Paths to config files"), sweep_paths: typing.List[str] = typer.Option( default_factory=list, help="Paths to sweep files" ), cli_args: cli_args.MLPQuickstartArgs = typer.Option(...), ) -> None: mlp_quickstart = base.MLPQuickstart.from_yaml_files(config_paths) mlp_quickstart = mlp_quickstart.apply_cli_args(cli_args) if len(sweep_paths) == 0: run_trial(mlp_quickstart) return # Remaining code....
- Flexible YAML Config
- Flexible YAML sweeps
- Instant YAML validation w/ JSON schemas
🔑 Key Features
📌 Single Source of Truth:
- The Protobuf schema provides a centralized definition for your configurations.
🔧 Flexible Configuration Management:
- Minimal Change Amplification: Automatically generated code reduces cascading manual changes when modifying configurations.
- Flexible Patching: Easily modify base configurations with patches for quick experimentation.
- Flexible YAML: Use human-readable YAML with support for advanced references within and across files.
- Hyperparameter Sweeps: Effortlessly define and manage hyperparameter tuning.
- CLI Argument Parsing: Automatically generate command-line interfaces from your configuration schemas.
- Factories: Optionally generate
build()helpers that instantiate Python classes from config fields.
✅ Validation and Type Safety:
- JSON Schema Generation: Easily validate your YAML content as you type.
- Strong Typing: The generated code comes with strong typing that will help you, your IDE, the type checker and your team to better understand the codebase and to build more robust ML code.
🚦 Getting Started
To start using py-gen-ml, you can install it via pip:
For a quick example of how to use py-gen-ml in your project, check out our Quick Start Guide.
💡 Motivation
Machine learning projects often involve complex configurations with many interdependent parameters. Changing one config (e.g., the dataset) might require adjusting several other parameters for optimal performance. Traditional approaches to organizing configs can become unwieldy and tightly coupled with code, making changes difficult.
py-gen-ml addresses these challenges by:
- 📊 Providing a single, strongly-typed schema definition for configurations. You write that schema in protobuf.
- 🔄 Generating deterministic code to manage configuration changes automatically (base, patch, sweep, CLI).
- 📝 Offering flexible YAML configurations with advanced referencing and variable support.
- 🛠️ Generating JSON schemas for real-time YAML validation.
- 🔌 Seamlessly integrating into your workflow with multiple experiment running options:
- Single experiments with specific config values
- Base config patching
- Parameter sweeps via JSON schema validated YAML files
- Quick value overrides via a generated CLI parser
- Arbitrary combinations of the above options
This approach results in more robust ML code, leveraging strong typing and IDE support while avoiding the burden of change amplification in complex configuration structures.
🎯 When to use py-gen-ml
Consider using py-gen-ml when you need to:
- 📈 Manage complex ML projects more efficiently
- 🔬 Streamline experiment running and hyperparameter tuning
- 🛡️ Reduce the impact of configuration changes on your workflow
- 💻 Leverage type safety and IDE support in your ML workflows
📚 Where to go from here
- Quickstart: Write a proto, generate models, load YAML, patch, sweep, and run a CLI.
- py-gen-ml command: Flags, outputs, and project layout.
- Protobuf crash course: How schemas map to generated tooling.
- YAML configuration: Human-readable configs with JSON Schema validation.
- Patching: Express experiments as deltas on a base config.
- Parameter Sweeps: Optuna search spaces from generated sweep models.
- CLI argument parsing: Override nested fields from the command line.
- Factories: Generate
build()helpers from(pgml.factory). - CIFAR-10 example: An end-to-end training project using
py-gen-ml. - Sentiment flywheel: Synthesize IMDB-style reviews, review in Argilla, train + track with MLflow.