Closed TomonobuTsujikawa closed 11 months ago
This PR tends to fix bug of network expander, which might produce duplicated variable name.
For cpp expander, the repeat block will be expanded as follows:
convolution_{repeat_start}_1/conv/b --> convolution_3_1/conv/b
But python expander will expand it as follows:
convolution_{repeat_start}_1/conv/b --> convolution_3[1]/conv/b
This caused problems with reading the wrong parameters or not being able to read parameters.
This PR tends to fix bug of network expander, which might produce duplicated variable name.
For cpp expander, the repeat block will be expanded as follows:
But python expander will expand it as follows:
This caused problems with reading the wrong parameters or not being able to read parameters.