We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
children
1 parent 6d64340 commit f8044b3Copy full SHA for f8044b3
test/composition/learning_networks/inspection.jl
@@ -13,8 +13,8 @@ List all (immediate) children of node `N` in the ancestor graph of `y`
13
14
"""
15
children(N::AbstractNode, y::AbstractNode) = filter(nodes(y)) do Z
16
- t = MMI.isrepresented(N, MLJBase.args(Z)) ||
17
- MMI.isrepresented(N, MLJBase.train_args(Z))
+ t = N in MLJBase.args(Z) ||
+ N in MLJBase.train_args(Z)
18
end |> unique
19
20
@constant X = source()
0 commit comments