spawn99 commited on
Commit
0356ba0
·
verified ·
1 Parent(s): 06ec465

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -1
README.md CHANGED
@@ -11,4 +11,9 @@ license: mit
11
  short_description: Beam Search vs Greedy Search Demo
12
  ---
13
 
14
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
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
+