496049402687447ae27ced620da79df7543fbe72,deepvoice3_pytorch/deepvoice3.py,Decoder,_incremental_forward,#Decoder#Any#Any#Any#Any#,470

Before Change



            // project to size of convolution
            // x = self.relu(self.fc1(x))
            x = self.fc1(x)

            // temporal convolutions
            ave_alignment = None
            for idx, (proj, conv, attention) in enumerate(zip(

After Change


            x = F.dropout(x, p=self.dropout, training=self.training)

            // project to size of convolution
            x = self.relu(self.fc1(x))

            // temporal convolutions
            ave_alignment = None
            for idx, (proj, conv, attention) in enumerate(zip(
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: r9y9/deepvoice3_pytorch
Commit Name: 496049402687447ae27ced620da79df7543fbe72
Time: 2017-11-04
Author: zryuichi@gmail.com
File Name: deepvoice3_pytorch/deepvoice3.py
Class Name: Decoder
Method Name: _incremental_forward


Project Name: r9y9/deepvoice3_pytorch
Commit Name: 77ab0de9221a8dac3b16ccddb32cec67ffdac903
Time: 2017-11-12
Author: zryuichi@gmail.com
File Name: deepvoice3_pytorch/deepvoice3.py
Class Name: Converter
Method Name: forward


Project Name: r9y9/deepvoice3_pytorch
Commit Name: 496049402687447ae27ced620da79df7543fbe72
Time: 2017-11-04
Author: zryuichi@gmail.com
File Name: deepvoice3_pytorch/deepvoice3.py
Class Name: Decoder
Method Name: forward