Metadata-Version: 2.4
Name: openinfer-oinf
Version: 0.1.1
Summary: Python tooling for the .oinf model format.
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: pydantic
Requires-Dist: numpy

## openinfer-oinf

Python tooling for the `.oinf` model format. Use this package to encode
dataclass-based models, verify binaries, and inspect sizevars and tensors.

### Install
```bash
pip install openinfer-oinf
```

### Install (local dev)
```bash
python -m venv .venv
. .venv/bin/activate
pip install -r requirements.txt
```

### Generate a model
```bash
python examples/mlp_regression_oinf.py
python verify_oinf.py res/models/mlp_regression.oinf
```

### Tests (local dev)
```bash
python tests/run_oinf_tests.py
```

Docs: docs.open-infer.nl
