From 403789d2a9f34b245500b892a9b5bb5f41b8dd91 Mon Sep 17 00:00:00 2001 From: Jeremy Magland Date: Tue, 11 Feb 2025 17:24:37 -0500 Subject: [PATCH] fix comment in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f69de5..3b8cb42 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ assert np.all(decoded == signal) # Get compression stats original_size = signal.nbytes -compressed_size = encoded.size() # in bits +compressed_size = encoded.size() # in bytes compression_ratio = original_size / compressed_size print(f"Compression ratio: {compression_ratio:.2f}x") ```