1. 30 Apr, 2019 1 commit
  2. 05 Apr, 2019 1 commit
  3. 04 Apr, 2019 1 commit
    • Sepehr Sameni's avatar
      make auxiliary heads in pretrained models optional (#828) · 50ea596e
      Sepehr Sameni authored
      * add aux_logits support to inception
      
      it is related to pytorch/pytorch#18668
      
      * instantiate InceptionAux only when requested
      
      it is related to pytorch/pytorch#18668
      
      * revert googlenet
      
      * support and aux_logits in pretrained models
      
      * return namedtuple when aux_logit is True
      50ea596e
  4. 29 Mar, 2019 1 commit
  5. 26 Mar, 2019 1 commit
  6. 09 Mar, 2019 1 commit
    • ekka's avatar
      Added dimensions in the comments of googlenet (#788) · ef6e9afb
      ekka authored
      * Added dimensions in the comments
      
      The update provides the dimensions of the processed data following the style of inceptionV3 implementation.
      
      * Changed docs and comments
      
      Updated doc with the argument `transform_input`. Modified comments to match inceptionV3 style.
      ef6e9afb
  7. 07 Mar, 2019 1 commit
    • Michael Kösel's avatar
      Add GoogLeNet (Inception v1) (#678) · a2093007
      Michael Kösel authored
      * Add GoogLeNet (Inception v1)
      
      * Fix missing padding
      
      * Add missing ReLu to aux classifier
      
      * Add Batch normalized version of GoogLeNet
      
      * Use ceil_mode instead of padding and initialize weights using "xavier"
      
      * Match BVLC GoogLeNet zero initialization of classifier
      
      * Small cleanup
      
      * use adaptive avg pool
      
      * adjust network to match TensorFlow
      
      * Update url of pre-trained model and add classification results on ImageNet
      
      * Bugfix that improves performance by 1 point
      a2093007