Skip to main content

SAGE Fine-tuning Framework - Trainers and data loaders for LLM fine-tuning

Project description

sage-finetune

Fine-tuning implementations for the SAGE AI data processing framework.

Installation

pip install isage-finetune

For LoRA training:

pip install isage-finetune[peft]

Features

  • LoRA Trainer: Parameter-efficient fine-tuning with Low-Rank Adaptation
  • Mock Trainer: Testing trainer for pipeline validation
  • JSON/JSONL Loader: Flexible data loading for instruction and chat formats

Quick Start

from sage_finetune import MockTrainer, JSONDatasetLoader

# Load training data
loader = JSONDatasetLoader()
train_data = loader.load("train.jsonl")

# Train (mock for testing)
trainer = MockTrainer()
result = trainer.train(train_data)
print(f"Loss: {result['train_loss']:.4f}")

LoRA Fine-tuning

from sage_finetune import LoRATrainer, LoRAConfig

trainer = LoRATrainer(
    model_name="gpt2",
    lora_config=LoRAConfig(r=8, lora_alpha=16),
)

result = trainer.train(train_dataset)
trainer.save_model("./my_lora_model")

Data Formats

Instruction Format

{"instruction": "Summarize this text", "input": "Long text...", "output": "Summary..."}

Chat Format

{"messages": [{"role": "user", "content": "Hello"}, {"role": "assistant", "content": "Hi"}]}

Integration with SAGE

When SAGE is installed, components auto-register with the framework:

from sage.libs.finetune import create_trainer

trainer = create_trainer("lora", model_name="gpt2")

License

Apache 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

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

isage_finetune-0.1.0.4-py2.py3-none-any.whl (58.2 kB view details)

Uploaded Python 2Python 3

File details

Details for the file isage_finetune-0.1.0.4-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for isage_finetune-0.1.0.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 da8fbfc2e3ae87179858ce466d53b030442f4628f114d6bce49426dac37943be
MD5 6a85bf12832275aace7b1f3bec84e0e8
BLAKE2b-256 490192c0d6de0f700376f76f181c30606b56813001c86bc85de5f4a55656bbb4

See more details on using hashes here.

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