Update README.md
Browse files
README.md
CHANGED
@@ -81,5 +81,5 @@ csi = torch.rand((2, 100, 52))
|
|
81 |
time_stamp = torch.rand((2, 100))
|
82 |
attention_mask = torch.zeros((2, 100))
|
83 |
y = model(csi,time_stamp,attention_mask)
|
84 |
-
print(y.shape) # dim: [2,100,
|
85 |
```
|
|
|
81 |
time_stamp = torch.rand((2, 100))
|
82 |
attention_mask = torch.zeros((2, 100))
|
83 |
y = model(csi,time_stamp,attention_mask)
|
84 |
+
print(y.shape) # dim: [2,100,128] (batch_size,length,hidden_dim)
|
85 |
```
|