model_resblock.Rd
ResNet block based on "Deep Residual Learning for Image Recognition". Pass the input through the ResBlock layer. The paper link is https://arxiv.org/pdf/1512.03385.pdf.
model_resblock(n_freq = 128)
the number of bins in a spectrogram. (Default: 128
)
Tensor shape: (n_batch, n_freq, n_time)
forward param: specgram (Tensor): the input sequence to the ResBlock layer (n_batch, n_freq, n_time).
if(torch::torch_is_installed()) {
resblock = model_resblock()
input = torch::torch_rand(10, 128, 512) # a random spectrogram
output = resblock(input) # shape: (10, 128, 512)
}