Update README.md
Browse files
README.md
CHANGED
@@ -23,4 +23,6 @@ assert sr == 16000
|
|
23 |
x = torch.tensor(wav).unsqueeze(0).cuda()
|
24 |
x_len = torch.tensor([x.shape[1]]).cuda()
|
25 |
labels = traced_extractor(x, x_len)[1].detach().cpu().numpy()
|
26 |
-
```
|
|
|
|
|
|
23 |
x = torch.tensor(wav).unsqueeze(0).cuda()
|
24 |
x_len = torch.tensor([x.shape[1]]).cuda()
|
25 |
labels = traced_extractor(x, x_len)[1].detach().cpu().numpy()
|
26 |
+
```
|
27 |
+
|
28 |
+
More on tracing in the [post](https://balacoon.com/blog/mhubert_tracing/)
|