changtaoli

Results 2 issues of changtaoli

### 🐛 Describe the bug I am trying to convert an audio tensor into 'gsm' format to simulate communication process with this apply_codec function. However, beside a transformed tensor, this...

This is something wrong in the Tree class. class Tree(nn.Module): def __init__(self, block, in_channels, out_channels, level=1, stride=1): super(Tree, self).__init__() self.level = level if level == 1: self.root = Root(2*out_channels, out_channels)...