NCA-GENM - Core Machine Learning and AI Knowledge - Section 2.4

Understand model fusion and the difference between modality and agent orchestration.

Distinguish model fusion - combining representations from multiple networks - from agent orchestration, which coordinates discrete model calls through a control layer. Choose the appropriate pattern based on whether integration must happen at the feature level or the workflow level.

Model fusionOrchestration

Practice question for this objective

Free sampleCore Machine Learning and AI Knowledgehard

An engineer is asked to explain the conceptual difference between modality orchestration and agent orchestration to a new team member. Which statement most accurately captures how the two differ in what they coordinate?

  • AModality orchestration coordinates how different data modalities such as image, audio, and text are encoded, aligned, and combined within a pipeline, whereas agent orchestration coordinates how autonomous agents or tools are selected, sequenced, and chained to accomplish a task. Correct
  • BModality orchestration coordinates which large language model answers a query and which prompt template is applied, whereas agent orchestration coordinates which GPU node executes the chosen model and how much memory it is allocated at inference time.
  • CModality orchestration decides the order in which model weights are loaded into device memory during start-up, whereas agent orchestration decides the order in which training batches are sampled and shuffled across each training epoch.
  • DModality orchestration and agent orchestration are interchangeable names for routing inference requests across replicas behind a load balancer, differing only in whether the incoming workload happens to be text based or image based.
Modality orchestration coordinates encoding and combining of data types, while agent orchestration coordinates selecting and sequencing autonomous agents or tools. The two orchestration concepts operate at different abstraction levels: one governs how heterogeneous modalities are processed and fused inside a model or pipeline, and the other governs how independent agents or tools are chosen and chained to complete a multi-step task, which is why they are not interchangeable.

Why A is correct: This correctly separates the two: modality orchestration concerns handling and combining heterogeneous data types, while agent orchestration concerns sequencing autonomous agents or tools toward a goal, which is the intended distinction.

Why B is wrong: This conflates orchestration with model selection and hardware scheduling; neither modality nor agent orchestration is defined by choosing prompts or GPUs, so the description misstates both concepts.

Why C is wrong: These describe memory management and data loading rather than coordination of reasoning or modalities, so the statement attaches the two terms to unrelated runtime and training concerns.

Why D is wrong: Treating the terms as synonyms for load balancing is a common oversimplification, but they describe distinct coordination problems, so calling them interchangeable is wrong.

See more NCA-GENM practice questions, answers explained.

More in this domain

Back to all Core Machine Learning and AI Knowledge objectives, or the NCA-GENM cert hub.

Examworthy is not affiliated with or endorsed by NVIDIA. Original, blueprint-aligned practice material only.