An open API service indexing awesome lists of open source software.

https://github.com/drsunday-ade/ai-systems-data-engineering

Data engineering + ML systems: lakehouse/ETL, streaming, feature store, MLOps, and model serving. Synthetic data → train → ONNX → FastAPI service + CI.
https://github.com/drsunday-ade/ai-systems-data-engineering

airflow data-en dbt dvc fastapi feature-store github-actions great-exp mlops onnx spark streaming

Last synced: 3 months ago
JSON representation

Data engineering + ML systems: lakehouse/ETL, streaming, feature store, MLOps, and model serving. Synthetic data → train → ONNX → FastAPI service + CI.

Awesome Lists containing this project

README

          

# ai-systems-data-engineering
Data engineering + ML systems: lakehouse/ETL, streaming, feature store, MLOps, and model serving. Synthetic data → train → ONNX → FastAPI service + CI.
# AI Systems & Data Engineering
**Goal:** end-to-end, reproducible ML systems: ingest → validate → transform → feature store → train → export (ONNX) → serve (FastAPI) → CI.

## Quickstart
```bash
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
python etl/synth_data.py
python etl/transform.py
python etl/validate.py
python training/train.py
python training/export_onnx.py
uvicorn serving.app:app --reload