Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion 04-fine-tuning/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ We have divided this module as follows:

1. [HuggingFace](01-HuggingFace.md): in this section we introduce HuggingFace, a model hub and package that works as the "Github of LLMs". Basically, it hosts the most common open-source models, as well as some libraries that allow you to play with them.

2. [Practicalexample](example-file): an example notebook demostrating a fine-tuning implementation using both a model and dataset from Hugging Face. The goal is to walk you through the steps of applying fine-tuning using LoRa.
2. [Practical examples](examples): example notebooks demostrating fine-tuning implementation using both a model and dataset from Hugging Face. The goal is to walk you through the steps of applying fine-tuning using LoRa.


> Fine-tuning requires a bit of extra knowledge regarding neural networks, you can take a look at the [llm basics section](../00-llm-basics/README.md) or at [DareData's Pytorch fundamentals Learning Pod](https://github.com/DareData/lp-pytorch-fundamentals).
7 changes: 7 additions & 0 deletions 04-fine-tuning/examples/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## FINE-TUNING EXAMPLES

This folder contains two notebooks that show fine-tuning implementation examples.

- [Summarization example](summarization_finetuning_example.ipynb)
- [Prompting example](prompting_finetuning_example.ipynb)

Loading