mirror of https://github.com/tracel-ai/burn.git
Fix missing ticks in Burn book and remove unused example dependency (#1144)
* Add missing ticks for triu and tril ops * Removed example unused dependency
This commit is contained in:
parent
0a6aa5ff64
commit
6079f98950
|
@ -113,8 +113,8 @@ Those operations are available for numeric tensor kinds: `Float` and `Int`.
|
|||
| `tensor.clamp_min(min)` | `torch.clamp(tensor, min=min)` |
|
||||
| `tensor.clamp_max(max)` | `torch.clamp(tensor, max=max)` |
|
||||
| `tensor.abs()` | `torch.abs(tensor)` |
|
||||
| `tensor.triu(diagonal) | `torch.triu(tensor, diagonal)` |
|
||||
| `tensor.tril(diagonal) | `torch.tril(tensor, diagonal)` |
|
||||
| `tensor.triu(diagonal)` | `torch.triu(tensor, diagonal)` |
|
||||
| `tensor.tril(diagonal)` | `torch.tril(tensor, diagonal)` |
|
||||
|
||||
### Float Operations
|
||||
|
||||
|
|
|
@ -15,7 +15,6 @@ burn = {path = "../../burn"}
|
|||
|
||||
# File download
|
||||
reqwest = {workspace = true, features = ["blocking"]}
|
||||
tempfile = {workspace = true}
|
||||
|
||||
# CSV parsing
|
||||
csv = {workspace = true}
|
||||
|
|
Loading…
Reference in New Issue