├── .gitmodules ├── README.md ├── csrc ├── fake_cffi_quantize.h ├── quantize.c └── quantize.h ├── mypy.ini ├── patches └── RekaQuant.patch ├── pyproject.toml ├── run_train.slurm ├── scripts ├── binarize_quants.py ├── dequant_gguf_to_hf.py ├── pad_intermediate.py └── prepare_ckpt.sh └── src ├── __init__.py ├── train.py └── utils ├── __init__.py ├── ggml.py └── quantize.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reka-ai/rekaquant/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reka-ai/rekaquant/HEAD/README.md -------------------------------------------------------------------------------- /csrc/fake_cffi_quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reka-ai/rekaquant/HEAD/csrc/fake_cffi_quantize.h -------------------------------------------------------------------------------- /csrc/quantize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reka-ai/rekaquant/HEAD/csrc/quantize.c -------------------------------------------------------------------------------- /csrc/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reka-ai/rekaquant/HEAD/csrc/quantize.h -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reka-ai/rekaquant/HEAD/mypy.ini -------------------------------------------------------------------------------- /patches/RekaQuant.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reka-ai/rekaquant/HEAD/patches/RekaQuant.patch -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reka-ai/rekaquant/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run_train.slurm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reka-ai/rekaquant/HEAD/run_train.slurm -------------------------------------------------------------------------------- /scripts/binarize_quants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reka-ai/rekaquant/HEAD/scripts/binarize_quants.py -------------------------------------------------------------------------------- /scripts/dequant_gguf_to_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reka-ai/rekaquant/HEAD/scripts/dequant_gguf_to_hf.py -------------------------------------------------------------------------------- /scripts/pad_intermediate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reka-ai/rekaquant/HEAD/scripts/pad_intermediate.py -------------------------------------------------------------------------------- /scripts/prepare_ckpt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reka-ai/rekaquant/HEAD/scripts/prepare_ckpt.sh -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reka-ai/rekaquant/HEAD/src/train.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/ggml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reka-ai/rekaquant/HEAD/src/utils/ggml.py -------------------------------------------------------------------------------- /src/utils/quantize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reka-ai/rekaquant/HEAD/src/utils/quantize.py --------------------------------------------------------------------------------