Skip to content

Commit 39a647d

Browse files
Quizzes details (#254)
1 parent 2cc6721 commit 39a647d

File tree

8 files changed

+30
-3
lines changed

8 files changed

+30
-3
lines changed

units/en/unit1/1.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Welcome to the smollest course of fine-tuning! This module will guide you throug
66

77
By the end of this course you will be fine tuning an LLM with SFT. This course is smol but fast! If you're like for a smoother gradient, check out the [The LLM Course](https://huggingface.co/learn/llm-course/chapter1/1).
88

9+
After completing this unit (and the assignment), don’t forget to test your knowledge with the [quiz](https://huggingface.co/spaces/smol-course/unit_1_quiz)!
10+
911
</Tip>
1012

1113
## What is Instruction Tuning?

units/en/unit1/6.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,9 @@ This will help us to reproduce your model evaluation before we add it to the lea
8989

9090
### Wait for the PR to be merged
9191

92-
Once the PR is merged, your model will be added to the leaderboard! You can check the leaderboard [here](https://huggingface.co/spaces/smol-course/leaderboard).
92+
Once the PR is merged, your model will be added to the leaderboard! You can check the leaderboard [here](https://huggingface.co/spaces/smol-course/leaderboard).
93+
94+
## Test your knowledge
95+
96+
You’ve completed the unit — great work!
97+
Now put your learning to the test by taking the [quiz](https://huggingface.co/spaces/smol-course/unit_1_quiz).

units/en/unit2/1.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Evaluation is a critical step in developing and deploying language models. It he
66

77
We are already using evaluation to submit models to the course leaderboard. In this unit we will explore evaluation in more detail and use what we learn to evaluate our models and submit them to the leaderboard.
88

9+
After completing this unit (and the assignment), don’t forget to test your knowledge with the [quiz](https://huggingface.co/spaces/smol-course/unit_2_quiz)!
10+
911
</Tip>
1012

1113
## Why Evaluation Matters

units/en/unit2/5.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,11 @@ This will help us reproduce your model evaluation before we add it to the leader
9090

9191
Once the PR is merged, your model will be added to the leaderboard! You can check the leaderboard [here](https://huggingface.co/spaces/smol-course/leaderboard).
9292

93+
## Test your knowledge
94+
95+
You’ve completed the unit — great work!
96+
Now put your learning to the test by taking the [quiz](https://huggingface.co/spaces/smol-course/unit_2_quiz).
97+
9398
## What You've Learned
9499

95100
By completing this unit, you've learned how to:

units/en/unit3/1.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Welcome to Unit 3 of the smollest course on fine-tuning! This module will guide
66

77
By the end of this unit you will be aligning an LLM with human preferences using Direct Preference Optimization (DPO). This course is smol but fast! If you're looking for a smoother gradient, check out the [The LLM Course](https://huggingface.co/learn/llm-course/chapter1/1).
88

9+
After completing this unit (and the assignment), don’t forget to test your knowledge with the [quiz](https://huggingface.co/spaces/smol-course/unit_3_quiz)!
10+
911
</Tip>
1012

1113
## What is Preference Alignment?

units/en/unit3/4.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,11 @@ Within the PR text, share both your training and evaluation commands.
110110

111111
Once the PR is merged, your DPO-aligned model will be added to the leaderboard! You can check the leaderboard [here](https://huggingface.co/spaces/smol-course/leaderboard).
112112

113+
## Test your knowledge
114+
115+
You’ve completed the unit — great work!
116+
Now put your learning to the test by taking the [quiz](https://huggingface.co/spaces/smol-course/unit_3_quiz).
117+
113118
## Resources and Further Reading
114119

115120
- [Unit 3 DPO Exercise](./4) - Complete DPO training guide

units/en/unit4/1.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
Vision Language Models (VLMs) can understand both images and text simultaneously, enabling tasks like image captioning, visual question answering, and multimodal reasoning. Just like LLMs, VLMs are trained to predict the next token — but with the added ability to process visual information. For example, [`HuggingFaceTB/SmolVLM2-2.2B-Base`](https://huggingface.co/HuggingFaceTB/SmolVLM2-2.2B-Base) is a base VLM model, while [`HuggingFaceTB/SmolVLM2-2.2B-Instruct`](https://huggingface.co/HuggingFaceTB/SmolVLM2-2.2B-Instruct) is instruction-tuned for chat-like interactions with users.
44

55
In this unit, we will explore how these models are built, how they work, and, most importantly, how you can use and adapt them for your own projects.
6-
76
<Tip>
87

98
By the end of this unit, you’ll fine-tune a VLM using the same techniques you’ve already learned in previous units (like SFT). As ever, this unit is *smol but fast*!
109

11-
If you’re looking for a deeper dive into computer vision, check out [The Community Computer Vision Course](https://huggingface.co/learn/computer-vision-course).
10+
If you’re looking for a deeper dive into computer vision, check out [The Community Computer Vision Course](https://huggingface.co/learn/computer-vision-course).
11+
12+
After completing this unit (and the assignment), don’t forget to test your knowledge with the [quiz](https://huggingface.co/spaces/smol-course/unit_4_quiz)!
1213

1314
</Tip>
1415

units/en/unit4/4.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,11 @@ Once the job completes:
448448

449449
This workflow removes the overhead of managing local resources, allowing you to focus on **model experimentation and evaluation**.
450450

451+
## Test your knowledge
452+
453+
You’ve completed the unit — great work!
454+
Now put your learning to the test by taking the [quiz](https://huggingface.co/spaces/smol-course/unit_4_quiz).
455+
451456
## Resources for Further Learning
452457

453458
Here are some helpful resources to deepen your understanding and continue experimenting with vision language models and TRL workflows:

0 commit comments

Comments
 (0)