YuanTingHsieh / TF_TCN

Tensorflow Temporal Convolutional Network
82 stars 39 forks source link

no residual convolution #5

Closed HappyCoderGS closed 5 years ago

HappyCoderGS commented 5 years ago

Hello, I have a problem, please give me your guidance. When I run pmnist_test.py, it displays'no residual convolution'. I feel confused about this and hope you can answer it. Thank you very much.

YuanTingHsieh commented 5 years ago

Hi @HappyCoderGS , That is a debug message and you can ignore that.

That just means that for that specific layer, there is no residual connection.

This is because of that input channels and output channels are the same. So residual is not required. The line is https://github.com/YuanTingHsieh/TF_TCN/blob/master/tcn/tcn.py#L221