Declarative YAML configuration
Define preprocessing, encoders, architecture, training, and hyperparameter optimization in one validated YAML file instead of writing training loops by hand.
Ludwig is an open-source declarative deep learning framework for training, fine-tuning, and deploying models from one YAML config.
Ludwig is an open-source declarative deep learning framework for building, fine-tuning, and deploying custom models with a single YAML config file. It is positioned for users who want to avoid hand-written training loops while still keeping access to advanced control when needed.
The site says Ludwig supports tabular, text, image, audio, time series, and LLM workflows, and that it can run locally or scale to Ray clusters without changing the model definition. The product documentation also highlights built-in preprocessing, experiment tracking, serving, and export workflows.
Define preprocessing, encoders, architecture, training, and hyperparameter optimization in one validated YAML file instead of writing training loops by hand.
Build models that combine tabular, text, image, audio, time series, and other feature types, and train multiple outputs in one run.
Fine-tune LLMs with supervised instruction tuning and alignment methods including DPO, KTO, ORPO, and GRPO, plus LoRA, QLoRA, DoRA, and VeRA.
Switch a local job to distributed execution by adding a backend configuration for Ray, with support shown for DDP, FSDP, DeepSpeed, and KubeRay.
Run built-in HPO with Ray Tune or Optuna, with samplers such as Auto, TPE, GP, and CMA-ES and persistence via SQLite or PostgreSQL.
Serve models with one command and export to SafeTensors, ONNX, or `torch.export`, with Docker images and Hugging Face Hub upload options.
Use Ludwig when you want to build a supervised model from a YAML file and keep the training pipeline explicit without coding preprocessing and loop logic from scratch.
Use it for projects that combine different input types, such as text with tabular features or images with metadata, while training multiple outputs in one model.
Use the LLM tooling to instruction-tune open models with 4-bit QLoRA or related alignment methods, then serve the result with Ludwig's serving command.
Use the Ray backend when a local experiment needs to scale out to distributed execution on a cluster without changing the underlying model definition.
Use the built-in export and serving workflow when you need a REST API, Docker image, or model artifact such as ONNX or SafeTensors for deployment.
Ludwig is a YAML-based framework for defining preprocessing, model architecture, training, hyperparameter optimization, and serving in one config file. The site describes it as an open-source declarative deep learning framework.
The getting-started and homepage pages show a command-line workflow: install Ludwig, prepare a dataset, and run `ludwig train --config ...`. The product also documents prediction, evaluation, hyperparameter optimization, serving, distributed training, and LLM fine-tuning.
The site says Ludwig supports tabular data, text, images, audio, time series, and LLM workflows. It also lists multimodal and multi-task modeling.
The homepage and docs indicate Ludwig can serve models as a REST API and export to formats such as SafeTensors, ONNX, and `torch.export`. It also mentions Docker images and upload to Hugging Face Hub.