Skip to main content
Drop a repoSign up
REPOLum1104/Understand-Anything+606 stars 24hREPOanthropics/financial-services-plugins+396 stars 24hREPOrohitg00/ai-engineering-from-scratch+331 stars 24hREPOaddyosmani/agent-skills+327 stars 24hREPOcolbymchenry/codegraph+327 stars 24hREPOLum1104/Understand-Anything+606 stars 24hREPOanthropics/financial-services-plugins+396 stars 24hREPOrohitg00/ai-engineering-from-scratch+331 stars 24hREPOaddyosmani/agent-skills+327 stars 24hREPOcolbymchenry/codegraph+327 stars 24h
Glossary

What is fine-tuning?

Fine-tuning adapts a pre-trained model to a specific task or domain by continuing training on a smaller, targeted dataset, changing its behaviour without training from scratch.

Fine-tuning takes a capable base model and nudges it toward your task using your own examples. Full fine-tuning updates every weight; parameter-efficient methods like LoRA train only small adapters, making it far cheaper. Teams reach for fine-tuning when prompt engineering and retrieval are not enough to get consistent behaviour or a specific style.

Open-source fine-tuning frameworks handle the training loop, data formatting, and adapter management. In practice the dataset matters more than the algorithm: a few hundred high-quality, well-labelled examples usually beat a large noisy set.

Best open-source LLMs

Trending fine-tuning projects

  1. Fincept-Corporation/FinceptTerminal

    FinceptTerminal is a modern finance application offering advanced market analytics, investment research, and economic data tools, designed for interactive exploration and data-driven decision-making in a user-friendly environment.

    24K+56 · 24hmomentum 10Python
  2. Michael-A-Kuykendall/shimmy

    ⚡ Python-free Rust inference server — OpenAI-API compatible. GGUF + SafeTensors, hot model swap, auto-discovery, single binary. FREE now, FREE forever.

    5.3K0 · 24hmomentum 2Rust

fine-tuning — FAQ

What is fine-tuning?
Fine-tuning adapts a pre-trained model to a specific task or domain by continuing training on a smaller, targeted dataset, changing its behaviour without training from scratch. Fine-tuning takes a capable base model and nudges it toward your task using your own examples. Full fine-tuning updates every weight; parameter-efficient methods like LoRA train only small adapters, making it far cheaper. Teams reach for fine-tuning when prompt engineering and retrieval are not enough to get consistent behaviour or a specific style.