Skip to main content

Train conversational language models from scratch.

Project description

Flatbuild

Flatbuild

Build conversational language models from scratch.

An open-source framework for training compact decoder-only language models from random initialization using a modular, configuration-driven pipeline.

Python License Tests PyPI version

GitHub: https://github.com/flatseek/flatbuild  ·  Organization: https://github.com/flatseek


Part of the Flatseek ecosystem

Flatseek (Keyword Search) • Flatvec (Vector Search) • Flatask (RAG Runtime) • Flatlens (Data Visualization) • Flatbuild (LLM Training) • Flattune (LLM Fine-Tuning) • Flatrun (LLM Inference)


See It In Action

The repository includes a small conversational dataset that demonstrates the complete Flatbuild workflow—from dataset to training, export, and inference.

Example dataset (data/demo_chat/dataset.jsonl):

{"messages":[{"role":"system","content":"You are Flatbot, a friendly conversational assistant. You help users understand things, solve problems, and have natural conversations. Be clear, helpful, and concise."},{"role":"user","content":"What gas do plants absorb?"},{"role":"assistant","content":"Plants absorb carbon dioxide from the atmosphere."}]}

Train the model:

flatbuild train configs/demo_chat.yaml

Example output:

Loaded config: configs/demo_chat.yaml
Project: demo-chat
Loaded 2500 conversations
Train: 2375  Validation: 125

Epoch 1/4  loss=4.9630  val_loss=5.2337  ppl=187.49  acc=36.4%
Epoch 2/4  loss=4.2745  val_loss=4.0206  ppl=55.73   acc=46.3%
Epoch 3/4  loss=2.6530  val_loss=3.2722  ppl=26.37   acc=49.6%
Epoch 4/4  loss=1.9804  val_loss=2.8162  ppl=16.71   acc=54.2%

Run completed.

Artifacts:
outputs/demo/20260802T014922Z

Export the trained checkpoint:

flatbuild export \
    outputs/demo/20260802T014922Z/checkpoints/final \
    --format safetensors
Wrote model.safetensors
Copied tokenizer files

outputs/demo/20260802T014922Z/checkpoints/export_safetensors

Run the exported model with Flatrun.

pip install flatrun

Then run the exported checkpoint:

flatrun \
    --model outputs/demo-large/20260802T014922Z/checkpoints/export_safetensors \
    --prompt "who are you?"

Example output:

Detected format: safetensors
Tokenizer vocab: 2603
Chat template: Qwen2 ChatML
Loaded model in 0.01 s

Prompt:
who are you?

Generated:
'I I I 1 1 1 Ocean classic...... c solar that that that'

This tiny demonstration trains a decoder-only language model from scratch using 1,000 conversational examples and showcases the complete Flat pipeline:

Conversation Dataset
        │
        ▼
 Flatbuild Training
        │
        ▼
   Model Checkpoint
        │
        ▼
 SafeTensors Export
        │
        ▼
 Flatrun Inference

The bundled demo model is intentionally small and only trained for a few epochs, so the generated text is not expected to be meaningful. Its purpose is to demonstrate the complete end-to-end workflow. The same pipeline scales to larger datasets and larger language models without changing the training or deployment process.


Overview

A modular training framework for building compact language models.

Flatbuild is an open-source Python framework for training decoder-only language models entirely from random initialization.

Instead of requiring a large pre-trained checkpoint, Flatbuild provides every component of the training pipeline—including datasets, tokenizer training, model architecture, optimization, checkpointing, evaluation, and exporting—inside a single configurable framework.

Every training run is driven by a YAML configuration, making experiments reproducible, portable, and easy to automate.


Why Flatbuild?

Most modern training frameworks assume you already have a base model.

Flatbuild starts one layer lower.

It provides a complete reference implementation of the entire language-model training pipeline where every module can be inspected, replaced, extended, or optimized independently.

The resulting checkpoints can be exported to SafeTensors or HuggingFace Transformers and used directly by Flatrun or any compatible inference runtime.


Highlights

  • Train decoder-only Transformers from scratch
  • YAML-driven reproducible experiments
  • Built-in tokenizer training
  • Grouped Query Attention (GQA)
  • RoPE positional embeddings
  • RMSNorm and SwiGLU
  • Gradient accumulation
  • Mixed precision (FP32 / FP16 / BF16)
  • Configurable chat templates
  • JSONL, Parquet, and HuggingFace datasets
  • SafeTensors and HuggingFace export
  • Modular architecture for research and experimentation

Installation

pip install -e ".[dev]"

Development dependencies include:

  • pytest
  • ruff
  • mypy

PyTorch is required at runtime.

Install the build matching your platform (CPU, CUDA, or Apple MPS).


Configuration

Training is controlled entirely through a YAML file.

Example:

name: demo-chat

dataset:
  type: conversation
  path: data/demo_chat/dataset.jsonl
  max_length: 384

tokenizer:
  source: train
  vocab_size: 1024

model:
  hidden_dim: 256
  n_layers: 4
  n_heads: 4
  n_kv_heads: 2
  context_length: 256

optimizer:
  type: adamw
  lr: 3e-4

trainer:
  epochs: 1
  batch_size: 8

See configs/demo_chat.yaml for the complete configuration.


CLI

flatbuild train
flatbuild resume
flatbuild evaluate
flatbuild export
flatbuild generate
flatbuild inspect
flatbuild benchmark

Run:

flatbuild --help

for the complete command reference.


Training Pipeline

Dataset
    │
    ▼
Tokenizer
    │
    ▼
Model
    │
    ▼
Training Loop
    │
    ▼
Checkpoint
    │
    ▼
Evaluation
    │
    ▼
Export

Every stage is configurable and replaceable.


Current Features

Flatbuild currently supports:

  • Decoder-only Transformer
  • Grouped Query Attention (GQA)
  • Rotary Position Embeddings (RoPE)
  • RMSNorm
  • SwiGLU
  • AdamW optimizer
  • Cosine learning-rate scheduler
  • Linear warmup
  • Early stopping
  • Gradient accumulation
  • Mixed precision training
  • BPE tokenizer training
  • Chat template formatting
  • JSONL datasets
  • Parquet datasets
  • HuggingFace datasets
  • SafeTensors export
  • HuggingFace Transformers export

Roadmap

Future releases are planned to include:

  • Supervised Fine-Tuning (SFT)
  • LoRA
  • QLoRA
  • DPO
  • MoE architectures
  • Vision-language models
  • Distributed training
  • Multi-node training
  • Advanced evaluation benchmarks

Quick Start

Train the bundled demo model:

flatbuild train configs/demo_chat.yaml

A typical run will:

  • Load the demo conversational dataset
  • Train a tokenizer (or reuse an existing one)
  • Train a decoder-only Transformer from scratch
  • Save checkpoints, metrics, and metadata
  • Export the final model

Outputs are written to:

outputs/demo/<run-id>/

License

Apache License 2.0

See LICENSE.

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

flatbuild-0.1.1.tar.gz (94.7 kB view details)

Uploaded Source

Built Distribution

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

flatbuild-0.1.1-py3-none-any.whl (98.9 kB view details)

Uploaded Python 3

File details

Details for the file flatbuild-0.1.1.tar.gz.

File metadata

  • Download URL: flatbuild-0.1.1.tar.gz
  • Upload date:
  • Size: 94.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for flatbuild-0.1.1.tar.gz
Algorithm Hash digest
SHA256 6963f5b8f18d4d291415dc5456a45a8c2f57be3576695910a93e34b295b7cabe
MD5 3356b69b458540e845360ad44f77cb31
BLAKE2b-256 3f8e22d1bf13d5352f531d77a2c176b1e328b21a0f94468a15bb42a852eb8bf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for flatbuild-0.1.1.tar.gz:

Publisher: publish.yml on flatseek/flatbuild

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flatbuild-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: flatbuild-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 98.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for flatbuild-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1c343686fcc382d1adbfe1f0a3c9246a3ba5c6a09ecec613de0e7d04d103522b
MD5 f4a0bf246086e54a7fc99b0dd3a83941
BLAKE2b-256 acba8b430c6654fb7fe9e1e3ce8a1d8dcd867c86519e23cb52bc6a7ed3253689

See more details on using hashes here.

Provenance

The following attestation bundles were made for flatbuild-0.1.1-py3-none-any.whl:

Publisher: publish.yml on flatseek/flatbuild

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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