-
- Downloads
Switch to PyTorch 1.1.0 (#306)
* PyTorch 1.1.0 now required - Moved other dependencies to up-to-date versions as well * Adapt LR scheduler to PyTorch 1.1 API changes: - Change lr_scheduler.step() calls to succeed validate calls, during training - Pass to lr_scheduler.step() caller both loss and top1 (Resolves issue #240) * Adapt thinning for PyTorch 1.1 semantic changes - **KNOWN ISSUE**: When a thinning recipe is applied, in certain cases PyTorch displays this warning: "UserWarning: non-inplace resize is deprecated". To be fixed later * SummaryGraph: Workaround for new scope name issue from PyTorch 1.1.0 * Adapt to updated PyTest version: - Stop using deprecated 'message' parameter of pytest.raises(), use pytest.fail() instead - Make sure only a single test case per pytest.raises context * Move PyTorch version check to root __init__.py - This means the version each checked when Distiller is first imported. A RuntimeError is raised if the version is wrong. * Updates to parameter_histograms notebook: - Replace deprecated normed argument with density - Add sparsity rate to plot title - Load model in CPU
Showing
- README.md 4 additions, 3 deletionsREADME.md
- distiller/__init__.py 16 additions, 0 deletionsdistiller/__init__.py
- distiller/knowledge_distillation.py 1 addition, 1 deletiondistiller/knowledge_distillation.py
- distiller/models/__init__.py 22 additions, 10 deletionsdistiller/models/__init__.py
- distiller/policy.py 7 additions, 6 deletionsdistiller/policy.py
- distiller/scheduler.py 7 additions, 7 deletionsdistiller/scheduler.py
- distiller/summary_graph.py 43 additions, 14 deletionsdistiller/summary_graph.py
- distiller/thinning.py 50 additions, 49 deletionsdistiller/thinning.py
- examples/classifier_compression/compress_classifier.py 3 additions, 19 deletionsexamples/classifier_compression/compress_classifier.py
- jupyter/parameter_histograms.ipynb 38 additions, 47 deletionsjupyter/parameter_histograms.ipynb
- requirements.txt 15 additions, 15 deletionsrequirements.txt
- tests/common.py 8 additions, 0 deletionstests/common.py
- tests/full_flow_tests.py 3 additions, 3 deletionstests/full_flow_tests.py
- tests/test_infra.py 2 additions, 3 deletionstests/test_infra.py
- tests/test_quant_utils.py 13 additions, 14 deletionstests/test_quant_utils.py
- tests/test_quantizer.py 24 additions, 23 deletionstests/test_quantizer.py
- tests/test_summarygraph.py 44 additions, 11 deletionstests/test_summarygraph.py
Loading
Please register or sign in to comment