Skip to content
Snippets Groups Projects
  1. Dec 06, 2018
    • Neta Zmora's avatar
      Documentation refactoring · 178c8c49
      Neta Zmora authored
      - Moved the Language model and struct pruning tutorials from the Wiki to
      the HTML documentation.  Love the ease of Wiki, but GitHub doesn't let
      Google crawl these pages, and users can't open PRs on Wiki pages.
      
      - Updated the pruning algorithms documentation
      178c8c49
  2. Dec 04, 2018
    • Guy Jacob's avatar
      Range-Based Linear Quantization Features (#95) · 907a6f04
      Guy Jacob authored
      * Asymmetric post-training quantization (only symmetric supported so until now)
      * Quantization aware training for range-based (min-max) symmetric and asymmetric quantization
      * Per-channel quantization support in both training and post-training
      * Added tests and examples
      * Updated documentation
      Unverified
      907a6f04
  3. Nov 25, 2018
  4. Nov 24, 2018
    • Neta Zmora's avatar
      Fix activation stats for Linear layers · 22e3ea8b
      Neta Zmora authored
      Thanks to Dan Alistarh for bringing this issue to my attention.
      The activations of Linear layers have shape (batch_size, output_size) and those
      of Convolution layers have shape (batch_size, num_channels, width, height) and
      this distinction in shape was not correctly handled.
      
      This commit also fixes sparsity computation for very large activations, as seen
      in VGG16, which leads to memory exhaustion.  One solution is to use smaller
      batch sizes, but this commit uses a different solution, which counts zeros “manually”,
      and using less space.
      
      Also in this commit:
      - Added a “caveats” section to the documentation.
      - Added more tests.
      22e3ea8b
  5. Nov 21, 2018
  6. Nov 08, 2018
    • Haim Barad's avatar
      Early Exit docs (#75) · 470209b9
      Haim Barad authored
      * Updated stats computation - fixes issues with validation stats
      
      * Clarification of output (docs)
      
      * Update
      
      * Moved validation stats to separate function
      470209b9
  7. Nov 07, 2018
  8. Nov 06, 2018
  9. Nov 04, 2018
  10. Oct 03, 2018
    • Neta Zmora's avatar
      documentation: update syntax of launching jupyter notebook · 5902146a
      Neta Zmora authored
      Latest versions of Jupyter notebooks have a different syntax for
      launching the server such that it listens on oll network interfaces
      (this is useful if you are running the Jupyter server on one machine,
      and connect to it from a browser on a different machine).
      
      So:
      	jupyter-notebook --ip=* --no-browser
      
      is replaced by:
      	jupyter-notebook --ip=0.0.0.0 --no-browser
      5902146a
  11. Sep 16, 2018
    • Neta Zmora's avatar
      A temporary fix for issue #36 (#48) · 5d3d6d8d
      Neta Zmora authored
      * A temporary fix for issue 36
      
      The thinning code assumes that the sgraph it is using
      is not data-parallel, because it (currently) accesses the
      layer-name keys using a "normalized" name ("module." is removed).
      
      The bug is that in thinning.py#L73 we create a data_parallel=True
      model; and then give it to sgraph.
      But in other places thinning code uses "normalized" keys.  For
      example in thinning.py#L264.
      
      The temporary fix configures data_parallel=False in thinning.py#L73.
      
      A long term solution should have SummaryGraph know how to handle
      both parallel and not-parallel models.  This can be done by having
      SummaryGraph convert layer-names it receives in the API to
      data_parallel=False using normalize_layer_name.  When returning
      results, use the de-normalized format.
      
      * Fix the documentation error from issue 36
      * Move some logs to debug and show in logging.conf how to enable DEBUG logs.
      Unverified
      5d3d6d8d
  12. Sep 03, 2018
  13. Jul 31, 2018
  14. Jul 22, 2018
    • Gal Novik's avatar
      PACT quantizer (#30) · df9a00ce
      Gal Novik authored
      * Adding PACT quantization method
      * Move logic modifying the optimizer due to changes the quantizer makes into the Quantizer itself
      * Updated documentation and tests
      df9a00ce
  15. Jul 17, 2018
    • Guy Jacob's avatar
      Quantizer tests, fixes and docs update · 6b166cec
      Guy Jacob authored
      * Add Quantizer unit tests
      * Require 'bits_overrides' to be OrderedDict to support overlapping
        patterns in a predictable manner + update documentation to reflect this
      * Quantizer class cleanup
        * Use "public" nn.Module APIs instead of protected attributes
        * Call the builtins set/get/delattr instead of the class special methods
          (__***__)
        * Fix issues reported in #24
      * Bug in RangeLinearQuantParamLayerWrapper - add explicit override of
        pre_quantized_forward accpeting single input (#15)
      * Add DoReFa test to full_flow_tests
      6b166cec
  16. Jul 01, 2018
  17. Jun 22, 2018
    • Thomas Fan's avatar
      DOC: Fix (#10) · ab35fed7
      Thomas Fan authored
      Reviewed and looking good.  We have to set a convention for naming files.
      ab35fed7
  18. Jun 21, 2018
  19. Jun 14, 2018
  20. May 22, 2018
  21. May 14, 2018
  22. May 13, 2018
  23. Apr 30, 2018
  24. Apr 28, 2018
  25. Apr 24, 2018
Loading