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
When creating a model with multiple input layers, it need to be synchronized based on the order in which the layers are defined and the order in which the data is defined in the data loader.
Now, even if the execution order of the layers changes through topological sort in the compilation step, the data loader is executed independently. Therefore, if there are multiple input layers, there is a problem that we must check the topological sort result and hard-coded accordingly.
The text was updated successfully, but these errors were encountered:
When creating a model with multiple input layers, it need to be synchronized based on the order in which the layers are defined and the order in which the data is defined in the data loader.
Now, even if the execution order of the layers changes through topological sort in the compilation step, the data loader is executed independently. Therefore, if there are multiple input layers, there is a problem that we must check the topological sort result and hard-coded accordingly.
The text was updated successfully, but these errors were encountered: