You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raise ConstructorError("while constructing a Python object", mark,yaml.constructor.ConstructorError: while constructing a Python objectcannot find 'DecoratedNode' in the module 'node_graph.utils' in "<unicode string>", line 1243, column 19: parent: &id003 !!python/object:node_grap ... ^
The source_nodes input is a dynamic namespace, and in AiiDA, we can pass any data into it, e.g., the remote input as shown above, but there is not source_nodes.remote input in the task, so the WorkGraph serialize the whole dict as a data node.
Solution
Here is a temporary solution: we add a input for the task manually:
Here is an example from @khsrali ,
and, it gives the following error:
The
source_nodes
input is a dynamic namespace, and in AiiDA, we can pass any data into it, e.g., theremote
input as shown above, but there is notsource_nodes.remote
input in the task, so the WorkGraph serialize the whole dict as a data node.Solution
Here is a temporary solution: we add a input for the task manually:
The text was updated successfully, but these errors were encountered: