.flake8
.gitignore
.pre-commit-config.yaml
LICENSE
Makefile
NOTICE
README.md
pyproject.toml
setup.py
.github/workflows/ci.yaml
.github/workflows/publish-nightly.yml
examples/distillation/README.md
examples/distillation/run.sh
examples/distillation/training.py
examples/pruning/README.md
examples/pruning/alps_24_ignore_attn.yaml
examples/pruning/main_pruning.py
examples/pruning/pruning_utils.py
examples/pruning/run.sh
examples/pruning/run_recipe.sh
examples/quantization/README.md
examples/quantization/main_quantization.py
examples/quantization/quantization_utils.py
examples/quantization/run_quantization.sh
examples/quantization/recipes/w4a16_int.yaml
examples/quantization/recipes/w8a8_int.yaml
examples/structured_pruning/README.md
examples/structured_pruning/main_structured_pruning.py
examples/structured_pruning/run.sh
examples/structured_pruning/structured_pruning_utils.py
src/__init__.py
src/fmchisel/__init__.py
src/fmchisel/config.py
src/fmchisel/modifiers.py
src/fmchisel/data/calibration_datautil.py
src/fmchisel/data/collator.py
src/fmchisel/data/datasets.py
src/fmchisel/distillation/__init__.py
src/fmchisel/distillation/config.py
src/fmchisel/distillation/losses.py
src/fmchisel/distillation/models.py
src/fmchisel/models/__init__.py
src/fmchisel/models/models.py
src/fmchisel/optimizers/__init__.py
src/fmchisel/optimizers/adamw_schedulefree.py
src/fmchisel/pruning/__init__.py
src/fmchisel/pruning/alps/__init__.py
src/fmchisel/pruning/alps/base.py
src/fmchisel/pruning/alps/utils/alps_sparsify.py
src/fmchisel/pruning/osscar/__init__.py
src/fmchisel/pruning/osscar/base.py
src/fmchisel/pruning/osscar/utils/helpers.py
src/fmchisel/pruning/osscar/utils/osscar_sparsify.py
src/fmchisel/quantization/__init__.py
src/fmchisel/quantization/quantease/__init__.py
src/fmchisel/quantization/quantease/base.py
src/fmchisel/quantization/quantease/utils/quantease_quantize.py
src/fmchisel/utils/__init__.py
src/fmchisel/utils/callbacks.py
src/fmchisel/utils/schedulefree_utils.py
src/fmchisel/utils/train_utils.py
src/fmchisel_nightly.egg-info/PKG-INFO
src/fmchisel_nightly.egg-info/SOURCES.txt
src/fmchisel_nightly.egg-info/dependency_links.txt
src/fmchisel_nightly.egg-info/requires.txt
src/fmchisel_nightly.egg-info/top_level.txt
test/compression/test_alps.py
test/compression/test_cleaning.py
test/compression/test_modifiers.py
test/compression/test_osscar.py
test/compression/test_pack.py
test/compression/test_quantease.py
test/compression/utils.py
test/data/test_calibration_data.py
test/distillation/test_config.py
test/distillation/test_loss.py
test/optimizers/test_adamw_schedulefree.py