├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── dedupe_estimator.cpp ├── lz4.cpp └── lz4.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/dedupe_estimator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/dedupe_estimator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/dedupe_estimator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/dedupe_estimator/HEAD/README.md -------------------------------------------------------------------------------- /dedupe_estimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/dedupe_estimator/HEAD/dedupe_estimator.cpp -------------------------------------------------------------------------------- /lz4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/dedupe_estimator/HEAD/lz4.cpp -------------------------------------------------------------------------------- /lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/dedupe_estimator/HEAD/lz4.h --------------------------------------------------------------------------------