Spaces:
Sleeping
Sleeping
zb12138
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -2,14 +2,7 @@
|
|
2 |
|
3 |
## About
|
4 |
|
5 |
-
This is a modified version of the [torchac](https://github.com/fab-jul/torchac). NumpyAc takes numpy array as input and can decode in an autoregressive mode.
|
6 |
-
|
7 |
-
The backend is written in C++, the API is for PyTorch tensors. It will compile in the first run with ninja.
|
8 |
-
|
9 |
-
The implementation is based on [this blog post](https://marknelson.us/posts/2014/10/19/data-compression-with-arithmetic-coding.html),
|
10 |
-
meaning that we implement _arithmetic coding_.
|
11 |
-
While it could be further optimized, it is already much faster than doing the equivalent thing in pure-Python (because of all the
|
12 |
-
bit-shifts etc.).
|
13 |
|
14 |
### Set up conda environment
|
15 |
|
|
|
2 |
|
3 |
## About
|
4 |
|
5 |
+
This is a modified version of the [torchac](https://github.com/fab-jul/torchac). NumpyAc takes numpy array as input and can decode in an autoregressive mode.The backend is written in C++, the API is for PyTorch tensors. It will compile in the first run with ninja.The implementation is based on [this blog post](https://marknelson.us/posts/2014/10/19/data-compression-with-arithmetic-coding.html), meaning that we implement _arithmetic coding_. While it could be further optimized, it is already much faster than doing the equivalent thing in pure-Python (because of all the bit-shifts etc.).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
### Set up conda environment
|
8 |
|