A mask-carver’s first app will either load stills of unfinished faces or stream a spoken note. What should decide which encoder module to import?
Select an answer to reveal the explanation.
Short Explanation
Pick the tool that fits the ingredients you’ll cook with. If the app loads stills, wire a vision encoder; if it streams speech, wire a speech module—not both by default.
Full Explanation
Associate implementation starts by matching the imported encoder to the modality the project will actually pass in. A stills path needs a vision module; a spoken-note path needs a speech module. Importing every encoder “just in case,” restating CNN theory, or feeding raw file bytes are not correct wiring choices.