Skip to content

Commit 5ee55f6

Browse files
committed
update readme
1 parent ef7f9e2 commit 5ee55f6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ tensor(indices=tensor([[0, 1, 2, 3],
6666
size=(5, 5), nnz=4, layout=torch.sparse_coo)
6767
```
6868

69+
This repository differs from similar packages like [PyTorch Sparse](https://github.com/rusty1s/pytorch_sparse) in that we build on top of the built-in PyTorch sparse tensor classes.
70+
This allows compatibility with the supported built-in PyTorch operations as well as maintaining the arbitrary dimensionality features of the built-in sparse tensors, which can be essential for complex-structured data objects like the multi-level feature pyramids used for object detection and other tasks in sparse images.
71+
It also leaves open the possibility of eventual integration into upstream PyTorch to ensure the broadest availability.
72+
6973
## Feature Overview
7074

7175
- Autograd-compatible implementations of bulk indexing, sparse tensor shape manipulations, and quick conversions between sparse tensor format and concatenated-batch format for use with position-invariant layers (Linear, BatchNorm, etc.).

0 commit comments

Comments
 (0)