Question 4
A GPT-based model is fine-tuned for story generation. During evaluation, you test different decoding strategies on the same prompt:
1. Method A: Every run produces the exact same story, even when executed multiple times. 2. Method B: The story changes slightly in each run, but overall structure and key events remain similar.
3. Method C: The story is wildly different each time, sometimes even changing the genre. Based on the observations, select the most likely decoding strategies for each method:
Method A: Greedy decoding
Method A: Top-K sampling with K = 50
Method B: Top-P sampling with p = 0.9
Method C: Top-P sampling with p = 0.5 and high temperature T = 1.5
Method C: Beam search with K = 5