diff --git a/README.md b/README.md index 5b9f1c6..5fe598b 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,10 @@ SoundNet Usage ----- - net = torch.load('soundnet8_final.t7') - sound = audio.load('demo.mp3') - - sound = sound:view(1, 1, -1, 1):cuda() - net:forward(sound) - - feat = net.modules[10].output:float() + net = torch.load('soundnet8_final.t7') + + sound = audio.load('demo.mp3') + sound = sound:view(1, 1, -1, 1):cuda() + + net:forward(sound) + feat = net.modules[10].output:float()