We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When below model is compiled, a bug occurs in PhysicalModel (possibly in naming). Same name is assigned to different outputs.
model = Model() to_list = ToList(n=3) concat_1 = Concat() concat_2 = Concat() input1 = IOKey("input1", type=Tensor) input2 = IOKey("input2", type=Tensor) input3 = IOKey("input3", type=Tensor) model |= to_list(input1=input1, input2=input2, input3=input3) model += concat_1(output="output_1") indexed_data = to_list.output[-2:] model |= concat_2(input=indexed_data, output="output_2")
Should be compiled with no errors.
CC: @kberat-synnada, @norhan-synnada
The text was updated successfully, but these errors were encountered:
aturker-synnada
No branches or pull requests
Bug Report
Describe the Bug
When below model is compiled, a bug occurs in PhysicalModel (possibly in naming). Same name is assigned to different outputs.
To Reproduce
Expected Behavior
Should be compiled with no errors.
System Info
CC: @kberat-synnada, @norhan-synnada
The text was updated successfully, but these errors were encountered: