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:
Guillaume Lagrange 2024-01-16 09:03:17 -05:00 committed by GitHub
parent 0a6aa5ff64
commit 6079f98950
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -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

View File

@ -15,7 +15,6 @@ burn = {path = "../../burn"}
# File download
reqwest = {workspace = true, features = ["blocking"]}
tempfile = {workspace = true}
# CSV parsing
csv = {workspace = true}