Alex Leung

Results 1 issues of Alex Leung

使用代码创建一个全连接层 hidden_1 = fluid.layers.fc(name='fc1', input=input_1, size=10, act='relu') 生成的不是一整个全连接的块,而是分成了三个小块,mul+elementwise_add+relu ![image](https://user-images.githubusercontent.com/7108023/95829985-92c45680-0d69-11eb-9039-9bed8cbda16f.png) 请问能通过设置,将其合并为一个fc的块吗?