๐ง Saara - Autonomous Document-to-LLM Data Factory. Transform PDFs into training datasets and fine-tune LLMs.
Project description
๐ง Saara: Advanced Document-to-LLM Data Engine
Saara is an end-to-end autonomous data pipeline designed to transform raw, unstructured documents (PDFs, research papers) into high-quality, instruction-tuned datasets for fine-tuning Large Language Models (LLMs).
Why this exists: Creating high-quality datasets is the bottleneck in training domain-specific AI. This tool automates the "boring stuff"โOCR, chunking, labeling, and cleaningโallowing you to go from PDF to fine-tuned model in hours, not weeks.
๐ Key Features
1. ๐๏ธ SOTA Vision-LLM OCR
- No more Garbled Text: Uses Moondream and Qwen2.5-VL (Vision-Language Models) to "read" PDFs visually.
- Handles complex double-column layouts, tables, and scientific diagrams that traditional OCR (Tesseract) fails on.
- Hybrid Fallback: Automatically switches between PyMuPDF (fast) and Vision OCR (accurate) based on page extractability.
2. ๐ค Autonomous Data Labeling
- Uses local LLMs (Granite 4.0, Llama 3) to generate diverse training tasks:
- Instruction Tuning: "How do I treat X using Ayurveda?"
- Q&A Pairs: Fact-based extraction.
- Summarization: TL;DRs of complex sections.
- Classification: Topic tagging.
3. ๐งช Data Distillation & Hygiene
- Self-Cleaning: The
distillmodule removes low-quality generations, duplicates, and confabulations. - ShareGPT Formatting: Automatically converts raw data into the industry-standard conversation format.
4. ๐ Native Fine-Tuning Support
- One-Command Training: Built-in training loop using
SFTTrainer(QLoRA) to fine-tune any HuggingFace model. - Multi-Format Support: Automatically handles ShareGPT, Alpaca, and Raw Text formats.
- Checkpoint Resume: Continue training from any checkpoint.
- Optimized for consumer GPUs (supports 4-bit quantization).
5. ๐งช Model Evaluation & Self-Improvement (NEW)
- Granite 4 as Judge: Test your fine-tuned model with automatic quality scoring.
- Self-Improvement Loop: Low-scoring responses are corrected and used for next training round.
- Iterative Enhancement: Train โ Evaluate โ Improve โ Repeat.
6. Model Deployment (NEW)
- Local Chat: Interactive terminal testing with your model.
- Ollama Export: Convert to GGUF format for Ollama usage.
- HuggingFace Hub: Push your model to share with the community.
- Cloud Deployment: Docker + Google Cloud Run ready.
๐ ๏ธ Architecture
graph LR
A[Raw PDF] --> B(Vision OCR / Extractor)
B --> C{Chunker Strategy}
C --> D[Synthetic Labeling Agent]
D --> E[Raw Dataset JSONL]
E --> F(Data Distiller)
F --> G[Clean ShareGPT Dataset]
G --> H[Fine-Tuning Engine]
H --> I[Model Evaluation]
I --> J{Score < 7?}
J -->|Yes| K[Generate Corrections]
K --> H
J -->|No| L((Deploy Model))
๐ฆ Installation
-
Clone the repository:
git clone https://github.com/nikhil49023/Data-engine.git cd Data-engine
-
Install the CLI:
pip install -e .
-
Add Python Scripts to PATH (Windows only):
If
saaracommand is not recognized, add the Python Scripts folder to your PATH:# Find your Scripts path python -c "import sysconfig; print(sysconfig.get_path('scripts', 'nt_user'))" # Add it to PATH permanently (replace with your actual path) setx PATH "%PATH%;C:\Users\YOUR_USERNAME\AppData\Local\...\Scripts"
Or use the local launcher (no PATH changes needed):
.\saara.bat --help
-
Setup Ollama:
- Install Ollama
For detailed usage instructions, please refer to the:
-
CLI User Guide (Commands & Workflows)
-
Functionality & Use Cases (capabilities & scenarios)
- The setup wizard will help you install models automatically
Quick Start
First-time setup (recommended):
pip install saara-ai
saara setup
The setup wizard will:
- โ Detect your hardware (GPU, VRAM, RAM)
- โ Recommend optimal models for your system
- โ Install selected vision and analyzer models
- โ Save configuration
As a Python SDK:
from saara import DataPipeline
pipeline = DataPipeline("config.yaml")
result = pipeline.process_directory("./documents")
โก Usage
๐ First-Time Setup
saara setup
This wizard detects your hardware and recommends models:
| Hardware Tier | VRAM | Recommended Models |
|---|---|---|
| Minimal | < 4 GB | Moondream, Phi-3 Mini |
| Light | 4-8 GB | Qwen2.5-VL 3B, Llama 3.2 3B |
| Medium | 8-16 GB | Qwen2.5-VL 7B, Mistral 7B |
| Heavy | > 16 GB | Qwen2.5-VL 32B, Qwen 2.5 32B |
๐ฆ Model Management
# List all available and installed models
saara models list
# Install a specific model
saara models install moondream
saara models install llama3.2:3b
saara models install qwen2.5vl:7b
# Remove a model
saara models remove moondream
# Check status of all models
saara models status
๐ฏ Interactive Wizard
saara run
This launches a beautiful CLI wizard with 4 workflows:
| Option | Mode | Description |
|---|---|---|
| 1 | ๐ Dataset Creation | Extract data from PDFs โ Generate training datasets |
| 2 | ๐ง Model Training | Fine-tune LLMs on your prepared data |
| 3 | ๐งช Model Evaluation | Test & improve models with Granite 4 |
| 4 | ๐ Model Deployment | Deploy locally (Ollama) or to cloud |
๐ Dataset Creation Flow
- Select input PDF folder and output directory
- Choose Vision OCR model (Moondream/Qwen) - auto-detects available models
- Choose Analyzer model (Granite 4/Llama 3/Qwen 2.5/Mistral)
- Configure advanced options (chunk size, Q&A density)
- Pipeline automatically generates:
*_instruction.jsonl- Instruction tuning data*_qa.jsonl- Q&A pairs*_sharegpt.jsonl- Chat format (best for training)*_summarization.jsonl- Summarization tasks
๐ฌ Distillation Pipeline (New!)
Generate high-quality synthetic training data from text/markdown files:
# Distill a markdown file into training data
saara distill document.md --type reasoning
# Process entire folder with custom settings
saara distill ./texts --pairs 5 --output ./my_dataset
# All options
saara distill input.md \
--type all \ # factual, reasoning, conversational
--pairs 3 \ # pairs per type per chunk
--clean \ # enable text sanitization
--filter \ # enable quality filtering
--output ./datasets
Pipeline Steps:
- Sanitization - Removes OCR artifacts and conversational filler
- Semantic Chunking - Splits by Markdown headers (not character count)
- Multi-Type Generation - Creates factual, reasoning, and conversational data
- Quality Filtering - Rejects short answers and document-referencing phrases
Data Types Generated:
| Type | Description | Example |
|---|---|---|
| Factual | Fact retrieval | "What is X?" โ "X is..." |
| Reasoning | Why/How questions | "Why does X happen?" โ Step-by-step |
| Conversational | User scenarios | "I need help with X..." โ Helpful response |
| Instruction | Task completion | "Summarize..." โ Summary |
๐ง Model Training Flow
Features:
- Select from preset models or enter any HuggingFace ID
- Auto-combine multiple datasets from a folder
- HuggingFace login for gated models (Gemma, Llama)
- Resume training from checkpoints
- Optimized hyperparameters for fast training
Supported Base Models:
| Model | Size | Best For |
|---|---|---|
| sarvamai/sarvam-1 | 2B | Indian Languages |
| google/gemma-2b | 2B | General Purpose |
| TinyLlama/TinyLlama-1.1B | 1.1B | Fast Testing |
| meta-llama/Llama-3.2-1B | 1B | English Tasks |
| Qwen/Qwen2.5-7B | 7B | Complex Reasoning |
Output: models/{model-name}-finetuned/final_adapter/
๐งช Model Evaluation Flow
Uses Granite 4 to evaluate your fine-tuned model:
- Runs test prompts through your model
- Scores each response (1-10)
- Generates improved responses for low scores
- Creates correction data for next training round
Self-Improvement Cycle:
Train Model โ Evaluate (Granite 4) โ Generate Corrections โ Retrain โ Repeat
๐ง Autonomous Learning (New!)
Train your model by letting it learn autonomously from a superior "Teacher Model".
- Concept: Student (your model) answers questions; Teacher (GPT-4, Gemini, etc.) corrects them.
- Result: High-quality synthetic training data specific to your domain.
Supported Teachers:
- Ollama (Local): Granite 4, Llama 3
- OpenAI (Cloud): GPT-4o, GPT-3.5
- Google (Cloud): Gemini 1.5 Pro/Flash
- DeepSeek (Cloud): DeepSeek V3/R1
- HuggingFace (Cloud/Local): Any open weights model
Output: evaluations/learned_data_{topic}_{date}.jsonl
๐ Model Deployment Flow
| Option | Platform | Description |
|---|---|---|
| 1 | Local Chat | Interactive terminal chat |
| 2 | Ollama Export | Convert to GGUF format |
| 3 | HuggingFace | Push to HF Hub |
| 4 | Cloud Deploy | Docker + Google Cloud Run |
| 5 | Merge Model | Merge adapter with base |
API Server: Creates a ready-to-deploy FastAPI server at exports/api_server/
๐ฅ๏ธ Command Line (Advanced)
# Process PDFs
saara batch "./input_pdfs" --name ayurveda_v1
# Distill & clean
saara distill --name ayurveda_v1
# Train model
saara train --data datasets/distilled_train.jsonl --model google/gemma-2b
CLI Command Reference
saara exposes a powerful command-line interface.
1. Process Data
Extract, chunk, and label documents.
Single File:
saara process <file_path> --name <dataset_name>
Batch Directory:
saara batch <dir_path> --name <dataset_name>
Options:
--config, -c: Path to config YAML (default:config.yaml)--name, -n: Name for output files
2. Train Model
Fine-tune a base model on your datasets.
saara train --data <jsonl_path> --model <base_model_id>
Options:
--data, -d: Path to ShareGPT .jsonl file--model, -m: HuggingFace model ID (e.g.,google/gemma-2b,sarvamai/sarvam-1)
3. Evaluate Model (Autonomous Learning)
Evaluate a trained model or run the self-improvement loop.
saara evaluate <base_model> <adapter_path>
To run Autonomous Learning via CLI (advanced):
(Currently best accessed via saara run for interactive config)
4. Distill Data
Clean and filter low-quality generations.
saara distill --name <batch_name>
5. API Server
Start the local REST API.
saara serve --port 8000
๐ Project Structure
Data-engine/
โโโ setup.py # Package setup
โโโ config.yaml # Configuration settings
โโโ requirements.txt # Dependencies
โโโ saara/ # Source code
โ โโโ cli.py # CLI entry point
โ โโโ pipeline.py # Core data pipeline
โ โโโ train.py # LLM fine-tuning module
โ โโโ evaluator.py # Model evaluation with Granite 4
โ โโโ deployer.py # Deployment utilities
โ โโโ distiller.py # Data cleaning & distillation
โ โโโ dataset_generator.py # Dataset format generation
โ โโโ ollama_client.py # Ollama API client
โโโ models/ # Saved fine-tuned adapters
โโโ datasets/ # Generated datasets
โโโ evaluations/ # Evaluation results & corrections
โโโ exports/ # Deployment artifacts
๐ฎ Roadmap
- Vision-LLM OCR (Moondream, Qwen)
- Autonomous data labeling
- Multi-format dataset generation
- Native fine-tuning with QLoRA
- Model evaluation with Granite 4
- Self-improvement training loop
- Local & cloud deployment
- Multi-modal dataset generation (images + text)
- RAG-based factual verification
- Web UI dashboard
๐ License
Proprietary License - Copyright ยฉ 2024-2025 Nikhil. All Rights Reserved.
This software is provided under a proprietary license with the following terms:
โ Permitted:
- Use the software for personal, educational, or commercial purposes
- Reference in academic/educational contexts with attribution
โ Not Permitted:
- Modify, alter, or create derivative works
- Reproduce, copy, or duplicate the software
- Distribute, sublicense, or sell the software
- Reverse engineer or decompile the software
See the LICENSE file for full details.
๐ค Author
Nikhil - GitHub
Built with โค๏ธ for the AI community
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file saara_ai-1.2.15.tar.gz.
File metadata
- Download URL: saara_ai-1.2.15.tar.gz
- Upload date:
- Size: 82.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4037c3e00a87b1c381c417a1fae52ab1246dfc245edb219f0504850b8ef77744
|
|
| MD5 |
1fa1eb5511e68783f32821fd3b57d18c
|
|
| BLAKE2b-256 |
ef1c0cc19492a1b87683643405564b1b4a96cde7026b49ea9ad90616e6b1be4f
|
File details
Details for the file saara_ai-1.2.15-py3-none-any.whl.
File metadata
- Download URL: saara_ai-1.2.15-py3-none-any.whl
- Upload date:
- Size: 84.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12f3bfdd6147f828b3bd8a6fad48e45bef4c2bfb3b08a4419fddeed45b326421
|
|
| MD5 |
1c492dbf4fede8409dc1b76713ddee5a
|
|
| BLAKE2b-256 |
065dd4729407191a140b26c096e045e206637e55440e6ddf055800c6c0876e97
|