Learn Before
A developer provides a large language model with the following input text:
`Translate the following user requests into a structured command format.
Example 1: Request: "Set a timer for 10 minutes" Command: {"action": "set_timer", "duration_minutes": 10}
Example 2: Request: "What's the weather in London?" Command: {"action": "get_weather", "location": "London"}
Now, process this request: Request: "Play the new song by The Weeknd"`
The model correctly outputs: {"action": "play_music", "artist": "The Weeknd"}.
Which statement best analyzes the primary mechanism the model used to generate the correct command for the new request?
0
1
Tags
Ch.3 Prompting - Foundations of Large Language Models
Foundations of Large Language Models
Foundations of Large Language Models Course
Computing Sciences
Analysis in Bloom's Taxonomy
Cognitive Psychology
Psychology
Social Science
Empirical Science
Science
Related
A developer provides a large language model with the following input text:
`Translate the following user requests into a structured command format.
Example 1: Request: "Set a timer for 10 minutes" Command: {"action": "set_timer", "duration_minutes": 10}
Example 2: Request: "What's the weather in London?" Command: {"action": "get_weather", "location": "London"}
Now, process this request: Request: "Play the new song by The Weeknd"`
The model correctly outputs:
{"action": "play_music", "artist": "The Weeknd"}.Which statement best analyzes the primary mechanism the model used to generate the correct command for the new request?
In-Context Learning (ICL)
True or False: When a large language model successfully performs a novel task after being shown examples within a single prompt, this indicates that the model has undergone a permanent update to its internal weights, effectively 'training' it on the new task for all future interactions.
Analyzing Model Behavior Across Sessions