HƯỚNG DẪN KỸ THUẬT

Tiếp tục đào tạo trước và tinh chỉnh

Continued pretraining keeps training a base model with the same next-token objective on large amounts of raw domain text, while fine-tuning trains on a smaller curated set of labeled examples, such as instruction and response pairs, to shape behavior.

  • đọc 4 phút
  • Cập nhật lần cuối
Trên trang nàyđọc 4 phút
  1. Tổng quan
  2. Lặn sâu
  3. Tác động chiến lược
  4. The Future of Continued Pretraining vs Fine-Tuning
  5. Triển khai trong thế giới thực
  6. Rủi ro & lan can
  7. Lộ trình thực hiện
  8. Tiếp tục khám phá
  9. Câu hỏi thường gặp

Tổng quan

The choice matters because the first mainly shifts what a model knows about a domain and its language, the second mainly shifts how it responds, and the data and compute needed differ greatly.

Lặn sâu

Continued pretraining, also called domain-adaptive pretraining, picks up where the original pretraining stopped. The model sees raw text from the target domain, such as medical papers, source code or legal filings, and learns to predict every next token, exactly as in pretraining. Gururangan and colleagues showed in the 2020 paper Don't Stop Pretraining that a second phase of pretraining on in-domain text improved RoBERTa on tasks in biomedical, computer science, news and review domains. It usually needs large volumes of text, often billions of tokens, and full-parameter training, so it costs far more than fine-tuning. Fine-tuning, usually supervised fine-tuning, uses prompt and response pairs. Loss is typically computed only on the response tokens, so the model learns what to produce given an input. Datasets range from a few thousand to hundreds of thousands of examples, and parameter-efficient methods such as LoRA make it affordable on modest hardware. It is good at teaching format, style, task behavior and instruction following. Preference methods such as RLHF or DPO often follow. A common pipeline is base model, then continued pretraining, then supervised fine-tuning, then preference tuning. Continued pretraining has a known risk: catastrophic forgetting, where general skills degrade. Applied to a chat model, it can also erode instruction following, so teams often start from a base model and redo instruction tuning afterward. Two misconceptions stand out. First, fine-tuning is not a reliable way to add many new facts; research such as Gekhman and colleagues (2024) found models learn new facts slowly through fine-tuning and that doing so can increase hallucination. For fast-changing facts, retrieval is often the better tool. Second, BloombergGPT is sometimes cited as continued pretraining, but it was trained from scratch on a mix of financial and general data. A rough rule: use continued pretraining when domain language differs a lot from web text and unlabeled data is plentiful; use fine-tuning when you need a behavior or format.

Tác động chiến lược

Chi phí và ngân sách

Các quyết định về kiến ​​trúc sẽ thúc đẩy hiệu suất và chi phí vận hành trong nhiều năm.

Quyết định rõ ràng hơn

Giáo dục kỹ thuật giúp các nhóm chọn nhóm phù hợp chứ không chỉ nhóm mới nhất.

Kiểm soát chất lượng

Lựa chọn kỹ thuật tốt hơn làm giảm sự cố về độ tin cậy trong sản xuất.

The Future of Continued Pretraining vs Fine-Tuning

The steady release of capable open base models has made continued pretraining practical for more organizations, though it still requires substantial data and compute. Active research areas include reducing forgetting, making domain adaptation cheaper, and combining weights from separately trained models. In practice, many teams will keep pairing light fine-tuning with retrieval rather than full continued pretraining, reserving the heavier option for domains whose language is poorly covered by general web data.

Triển khai trong thế giới thực

Code Llama was built by continuing to train Llama 2 on a large corpus of code, and some of its variants were then further trained for Python and for following instructions.

A legal-tech company with millions of unlabeled contracts and filings runs continued pretraining to improve the model's handling of legal language, then fine-tunes on a few thousand annotated clause-extraction examples.

A bank wants a chatbot that answers in a fixed JSON format with a set tone; supervised fine-tuning, or even careful prompting, is enough because the model already knows the general content.

EPFL's Meditron models adapted Llama 2 to medicine through continued pretraining on medical papers and clinical guidelines before any task-specific fine-tuning.

Rủi ro & lan can

  • Tối ưu hóa một điểm chuẩn có thể che giấu những điểm yếu của hệ thống rộng hơn.

  • Chi phí cơ sở hạ tầng và bảo trì thường được đánh giá thấp.

  • Khoảng cách về bảo mật và khả năng quan sát có thể tăng lên khi hệ thống trở nên phức tạp hơn.

Lộ trình thực hiện

  1. Xác định các mục tiêu về độ trễ, chất lượng và chi phí trước khi triển khai.

  2. Điểm chuẩn trong điều kiện tải và dữ liệu thực tế.

  3. Giám sát thiết bị về lỗi, độ lệch và tác động của người dùng.

  4. Chuẩn bị đường dẫn khôi phục và ứng phó sự cố trước khi mở rộng quy mô.

Tiếp tục khám phá

Free newsletter

Get the daily AI briefing

Three verified AI stories every weekday morning, written in plain English. Free forever, no ads.

One email each weekday. Unsubscribe in one click. We never sell or share your address.

Test yourself

Take the Continued Pretraining vs Fine-Tuning quiz

Instant feedback on every answer, and a shareable certificate with a verifiable ID once you pass a course.

Bắt đầu bài kiểm tra

Support free AI education. AI Understanding is a 501(c)(3) nonprofit — no ads, no paywall, ever. Make a donation

Câu hỏi thường gặp

What is Continued Pretraining vs Fine-Tuning?

Continued pretraining keeps training a base model with the same next-token objective on large amounts of raw domain text, while fine-tuning trains on a smaller curated set of labeled examples, such as instruction and response pairs, to shape behavior. The choice matters because the first mainly shifts what a model knows about a domain and its language, the second mainly shifts how it responds, and the data and compute needed differ greatly.

What is the main data difference between continued pretraining and supervised fine-tuning?

Continued pretraining predicts next tokens on raw text, while fine-tuning learns from prompt and response pairs.

In supervised fine-tuning, where is the loss usually computed?

Masking the prompt means the model learns what to produce given an input, not to reproduce the input.

What is replay in continued pretraining?

Including general data helps keep general skills from degrading while the model learns the domain.

How was Code Llama built?

Code Llama is a continued pretraining example, with some variants further trained for Python and instructions.

For facts that change often, which approach does the guide suggest is often better than fine-tuning?

Fine-tuning learns new facts slowly and can increase hallucination, so retrieval is often better for changing information.