First post, by Harry Potter
Hi! I successfully debugged one of my compression techniques several times recently, but each time, the compression ratio was poor. 🙁 I believe it's because I was using MTF without anything else and hash tables for LZ77. I got another technique to do very well, but when I applied hash tables to its LZ77, I lost big points with its compressibility. 🙁 Worse yet, it cost well over 8k for its table, and I'm coding for 8-bit systems, where memory is at a premium. 🙁 I'm looking for a better way that requires much less RAM and produces much better results. It can be slightly slower. Any suggestions?
BTW, I want to implement BWT and a better form of BPE. I'm currently using a method of BPE that acts like LZ77 and compresses very recent occurrences better. I really think I should use a form of tokenization there and compress the most often-occurring words better but need a more efficient method to do so. Any ideas?
Joseph Rose, a.k.a. Harry Potter
Working magic in the computer community