.git-blame-ignore-revs
.gitignore
.pre-commit-config.yaml
.readthedocs.yaml
LICENSE
README.md
__init__.py
pyproject.toml
tox.ini
.github/workflows/python-publish.yml
.github/workflows/sphinx-build.yml
docs/Makefile
docs/make.bat
docs/requirements.txt
docs/_static/image.png
docs/_static/pquant_transform.png
docs/source/conf.py
docs/source/faq.md
docs/source/getting_started.md
docs/source/index.rst
docs/source/install.md
docs/source/reference.md
docs/source/status.md
docs/source/_static/custom.css
docs/source/_static/overview_pquant.png
docs/source/_static/overview_pquant_updated.png
docs/source/_static/pquant.png
docs/source/_static/pquant_white_font.png
docs/source/_static/pruning_methods_overview.png
examples/example_finetuning.ipynb
examples/example_jet_tagging.ipynb
examples/example_prune_quantize_resnet.ipynb
examples/images/config_example.png
examples/images/pruning_method_stages.png
examples/images/replace_layer.png
examples/images/training_loop.png
src/pquant/__init__.py
src/pquant/_version.py
src/pquant/_alkaid_plugin/__init__.py
src/pquant/_alkaid_plugin/_alkaid_common.py
src/pquant/_alkaid_plugin/_alkaid_keras_plugin.py
src/pquant/_alkaid_plugin/_alkaid_torch_plugin.py
src/pquant/configs/__init__.py
src/pquant/configs/config_ap.yaml
src/pquant/configs/config_autosparse.yaml
src/pquant/configs/config_cs.yaml
src/pquant/configs/config_dst.yaml
src/pquant/configs/config_fitcompress.yaml
src/pquant/configs/config_mdmm.yaml
src/pquant/configs/config_pdp.yaml
src/pquant/configs/config_wanda.yaml
src/pquant/configs/finetuning.yaml
src/pquant/core/__init__.py
src/pquant/core/constants.py
src/pquant/core/hyperparameter_optimization.py
src/pquant/core/utils.py
src/pquant/core/keras/__init__.py
src/pquant/core/keras/activations.py
src/pquant/core/keras/convert_to_onnx.py
src/pquant/core/keras/layers.py
src/pquant/core/keras/quantizer.py
src/pquant/core/keras/train.py
src/pquant/core/keras/utils.py
src/pquant/core/keras/pruning_methods/__init__.py
src/pquant/core/keras/pruning_methods/activation_pruning.py
src/pquant/core/keras/pruning_methods/autosparse.py
src/pquant/core/keras/pruning_methods/constraint_functions.py
src/pquant/core/keras/pruning_methods/cs.py
src/pquant/core/keras/pruning_methods/dst.py
src/pquant/core/keras/pruning_methods/mdmm.py
src/pquant/core/keras/pruning_methods/metric_functions.py
src/pquant/core/keras/pruning_methods/pdp.py
src/pquant/core/keras/pruning_methods/wanda.py
src/pquant/core/torch/__init__.py
src/pquant/core/torch/activations.py
src/pquant/core/torch/convert_to_onnx.py
src/pquant/core/torch/distillers.py
src/pquant/core/torch/fit_compress.py
src/pquant/core/torch/fixed_point_quantizer.py
src/pquant/core/torch/hgq_quantizer.py
src/pquant/core/torch/layers.py
src/pquant/core/torch/optimizers.py
src/pquant/core/torch/quantizer.py
src/pquant/core/torch/tracing.py
src/pquant/core/torch/train.py
src/pquant/core/torch/utils.py
src/pquant/core/torch/pruning_methods/__init__.py
src/pquant/core/torch/pruning_methods/activation_pruning.py
src/pquant/core/torch/pruning_methods/autosparse.py
src/pquant/core/torch/pruning_methods/constraint_functions.py
src/pquant/core/torch/pruning_methods/cs.py
src/pquant/core/torch/pruning_methods/dst.py
src/pquant/core/torch/pruning_methods/fitcompress.py
src/pquant/core/torch/pruning_methods/mdmm.py
src/pquant/core/torch/pruning_methods/metric_functions.py
src/pquant/core/torch/pruning_methods/pdp.py
src/pquant/core/torch/pruning_methods/wanda.py
src/pquant/data_models/fitcompress_model.py
src/pquant/data_models/hyperparameter_optimization_model.py
src/pquant/data_models/pruning_model.py
src/pquant/data_models/quantization_model.py
src/pquant/data_models/training_model.py
src/pquant_ml.egg-info/PKG-INFO
src/pquant_ml.egg-info/SOURCES.txt
src/pquant_ml.egg-info/dependency_links.txt
src/pquant_ml.egg-info/entry_points.txt
src/pquant_ml.egg-info/requires.txt
src/pquant_ml.egg-info/scm_file_list.json
src/pquant_ml.egg-info/scm_version.json
src/pquant_ml.egg-info/top_level.txt
tests/__init__.py
tests/conftest.py
tests/run_tests.sh
tests/test_ap.py
tests/test_hgq_keras.py
tests/test_hgq_torch.py
tests/test_keras_alkaid_conversion.py
tests/test_keras_compression_layers.py
tests/test_keras_onnx_converter.py
tests/test_pdp.py
tests/test_quantizer_parity.py
tests/test_torch_alkaid_conversion.py
tests/test_torch_checkpoint.py
tests/test_torch_compression_layers.py
tests/test_torch_missing_quantizer_tracing.py
tests/test_torch_onnx_converter.py
tests/test_torch_pruning_layers.py
tests/test_wanda.py