googlenet_quant.rst 742 B

123456789101112131415161718192021222324
  1. Quantized GoogLeNet
  2. ===================
  3. .. currentmodule:: torchvision.models.quantization
  4. The Quantized GoogleNet model is based on the `Going Deeper with Convolutions <https://arxiv.org/abs/1409.4842>`__
  5. paper.
  6. Model builders
  7. --------------
  8. The following model builders can be used to instantiate a quantized GoogLeNet
  9. model, with or without pre-trained weights. All the model builders internally
  10. rely on the ``torchvision.models.quantization.googlenet.QuantizableGoogLeNet``
  11. base class. Please refer to the `source code
  12. <https://github.com/pytorch/vision/blob/main/torchvision/models/quantization/googlenet.py>`_
  13. for more details about this class.
  14. .. autosummary::
  15. :toctree: generated/
  16. :template: function.rst
  17. googlenet