├── .gitignore ├── LICENSE ├── README.md ├── bloom.py ├── datautils.py ├── llama.py ├── modelutils.py ├── opt.py ├── quant.py └── sparsegpt.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | llama/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lachlansneff/sparsellama/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lachlansneff/sparsellama/HEAD/README.md -------------------------------------------------------------------------------- /bloom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lachlansneff/sparsellama/HEAD/bloom.py -------------------------------------------------------------------------------- /datautils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lachlansneff/sparsellama/HEAD/datautils.py -------------------------------------------------------------------------------- /llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lachlansneff/sparsellama/HEAD/llama.py -------------------------------------------------------------------------------- /modelutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lachlansneff/sparsellama/HEAD/modelutils.py -------------------------------------------------------------------------------- /opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lachlansneff/sparsellama/HEAD/opt.py -------------------------------------------------------------------------------- /quant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lachlansneff/sparsellama/HEAD/quant.py -------------------------------------------------------------------------------- /sparsegpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lachlansneff/sparsellama/HEAD/sparsegpt.py --------------------------------------------------------------------------------