Note: This question is part of a series of questions that present the same scenario. Each question in the series
contains a unique solution that might meet the stated goals. Some question sets might have more than one
correct solution, while others might not have a correct solution.
After you answer a question in this sections, you will NOT be able to return to it. As a result, these questions will
not appear in the review screen.
You are designing an Azure Machine Learning workflow.
You have a dataset that contains two million large digital photographs.
You plan to detect the presence of trees in the photographs.
You need to ensure that your model supports the following:
Hidden layers that support a directed graph structure
User-defined core components on the GPU
Solution: You create a Machine Learning experiment that implements the Multiclass Decision Jungle module.
Does this meet the goal?

A.
Yes
B.
No
Decision jungles are a recent extension to decision forests. A decision jungle consists of an ensemble of decision directed acyclic graphs (DAGs).
Decision jungles have the following advantages:
• By allowing tree branches to merge, a decision DAG typically has a lower memory footprint and a better generalization performance than a decision tree, albeit at the cost of a somewhat higher training time.
• Decision jungles are non-parametric models, which can represent non-linear decision boundaries.
• They perform integrated feature selection and classification and are resilient in the presence of noisy features.
1
0