Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
@@ -11,4 +11,9 @@ license: mit
|
|
11 |
short_description: Beam Search vs Greedy Search Demo
|
12 |
---
|
13 |
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
11 |
short_description: Beam Search vs Greedy Search Demo
|
12 |
---
|
13 |
|
14 |
+
Welcome to the Beam Search vs Greedy Search Demo repository! This educational demo illustrates two text generation strategies in LLM inference using the Qwen2.5-0.5B model.
|
15 |
+
|
16 |
+
This demo compares:
|
17 |
+
- **Greedy Search**: Picks the most probable token at every generation step (deterministic).
|
18 |
+
- **Beam Search**: Explores multiple beams concurrently and returns the top candidate, often achieving more coherent or creative outputs.
|
19 |
+
|