akore commited on
Commit
efb9355
1 Parent(s): e28f6a5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -48,7 +48,7 @@ coords = torch.randn(1, 10, 3)
48
  attn_mask = torch.ones(1, 10)
49
 
50
  output = model(input_ids, coords=coords, attention_mask=attention_mask)
51
- output[0].shape # (torch.Size([1, 10, 768])
52
  ```
53
 
54
 
 
48
  attn_mask = torch.ones(1, 10)
49
 
50
  output = model(input_ids, coords=coords, attention_mask=attention_mask)
51
+ output.shape # (torch.Size([1, 10, 768])
52
  ```
53
 
54