Short Answer

What dependency rule governs a DAG-ordered machine learning pipeline?

Question: In a machine learning pipeline arranged as a Directed Acyclic Graph, what rule limits how one stage may use information from another stage?

Sample answer: Each later stage may use only outputs produced by earlier stages, and it may not feed information backward in a way that creates a cycle. This lets the pipeline be evaluated in a fixed topological order.

Key points:

  • Later stages can consume only earlier outputs.
  • Backward links that create cycles are not allowed.
  • The stages can therefore be computed in a fixed topological order.

Rubric: Response should clearly state that later components may depend only on outputs from earlier components and that the pipeline must remain acyclic so it can be computed in order.

0

1

Updated 2026-08-12

Contributors are:

Who are from:

Tags

Machine Learning

Deep Learning

Supervised Learning

Dive into Deep Learning @ D2L

Data Science

Machine Learning Strategy

Machine Learning Yearning @ DeepLearning.AI