Skip to main content

Overview

Fine-tune text generation models for chatbots, Q&A systems, or content generation. This guide shows the minimal setup to get started.

Your Data

Your training data should have two columns:
  • Input column - The user prompt or question
  • Output column - The expected response or answer
Example data in train.parquet:

Minimal Example

Key Parameters

Only these fields are required to start: All other parameters use sensible defaults.

Supported Models

Popular choices for text generation:
  • meta-llama/Llama-3.2-1B-Instruct - Fast, good for Q&A
  • meta-llama/Llama-3.2-3B-Instruct - Balanced performance
  • meta-llama/Llama-3.1-8B-Instruct - Higher quality, slower
  • Qwen/Qwen3-0.6B - Very fast, lightweight
See the full model list for all available options.

Monitor Progress

Check the status of your fine-tune:
Status values: created, running, completed, errored

Next Steps

Common Issues

Double-check your question_column and answer_column names match your data exactly. Column names are case-sensitive.
Reduce batch_size to 1 or try a smaller model like Llama-3.2-1B-Instruct.
Start with 1 epoch. If results aren’t good enough, try 2-3 epochs. More isn’t always better.