
Ultimate access to all questions.
You are working on a project to integrate a language understanding model into a voice-activated smart home system. The system should be able to handle various commands such as 'turn on the lights', 'set the temperature to 72 degrees', and 'play my favorite playlist'. How would you approach the task of training the model to handle these commands?
A
Create a single intent called 'smart_home_command' and add all possible variations of the commands as utterances.
B
Create separate intents for each command type and add specific utterances for each intent.
C
Use pre-built entities to extract information related to the commands and map them to the corresponding actions.
D
Train the model using a large dataset of voice commands and let it learn the associations between commands and actions.