File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
This project contains data compression ops and layers for TensorFlow. The
2
- project website is at https://tensorflow.github.io/compression .
2
+ project website is at
3
+ [ tensorflow.github.io/compression] ( https://tensorflow.github.io/compression ) .
4
+
5
+ What does this library do, you ask?
6
+
7
+ In a nutshell, you can use it to build your own ML models with optimized lossy
8
+ data compression built in. It's useful to find storage-efficient representations
9
+ of your data (features, examples, images, etc.) while only sacrificing a tiny
10
+ fraction of model performance. It can compress any floating point tensor to a
11
+ much smaller sequence of bits.
12
+
13
+ For an introduction to lossy data compression with machine learning, take a look
14
+ at @jonycgn 's
15
+ [ talk on Learned Image Compression] ( https://www.youtube.com/watch?v=x_q7cZviXkY ) .
3
16
4
17
# Quick start
5
18
@@ -35,7 +48,7 @@ import tensorflow_compression as tfc
35
48
## Example model
36
49
37
50
The [ examples directory] ( https://github.com/tensorflow/compression/tree/master/examples )
38
- directory contains an implementation of the image compression model described
51
+ contains an implementation of the image compression model described
39
52
in:
40
53
41
54
> "End-to-end optimized image compression"<br />
You can’t perform that action at this time.
0 commit comments