awesome-repositories.com
© 2026 Bringes Technology SRL·VAT RO45896025·hello@bringes.io
MCPSitemapPrivacyTerms
Fine-Tuning Tutorials · Awesome GitHub Repositories

1 repo

Awesome GitHub RepositoriesFine-Tuning Tutorials

Guides and code examples for adapting pre-trained machine learning models to specific tasks or datasets.

Distinguishing note: No existing candidates provided; this captures the educational aspect of model adaptation.

Explore 1 awesome GitHub repository matching artificial intelligence & ml · Fine-Tuning Tutorials. Refine with filters or upvote what's useful.

  1. Home
  2. Artificial Intelligence & ML
  3. Fine-Tuning Tutorials

Awesome Fine-Tuning Tutorials GitHub Repositories

Describe the repository you're looking for…
Find the best repos with AI.We'll search the best matching repositories with AI.
  • datawhalechina/self-llm

    datawhalechina/self-llm

    28,285View on GitHub↗

    This project is an open-source educational resource providing structured, step-by-step guides for fine-tuning large language models. It focuses on adapting pre-trained transformer-based causal models to custom datasets, enabling users to transfer specific writing styles or domain knowledge into generative AI models. The repository distinguishes itself by emphasizing parameter-efficient training techniques, specifically low-rank adaptation. By providing practical implementations for updating only a small subset of model weights, it allows for the customization of massive neural networks on con

    训练好了之后可以使用如下方式加载lora权重进行推理: ```python from transformers import AutoModelForCausalLM, AutoTokenizer import torch from peft import PeftModel modepath = '/root/autodl-tmp/LLM-Research/Meta-Llama-3-8B-Instruct' lorapath

    Jupyter Notebookchatglmchatglm3gemma-2b-it
    28,285View on GitHub↗