"git@developer.sourcefind.cn:Fzc7075/nunchaku.git" did not exist on "08204531d0e570fc95d9587ec62bc5072d8e824c"
  1. 27 Mar, 2017 1 commit
    • Yuanzheng Ci's avatar
      Change division style to prevent error in python3 (#127) · 74d04d2c
      Yuanzheng Ci authored
      Using python2 style '/' will convert int type to float in python3 which will cause the following error when creating FloatTensor:
      
      TypeError: torch.FloatTensor constructor received an invalid combination of arguments - got (float, int, int, int), but expected one of:
       * no arguments
       * (int ...)
            didn't match because some of the arguments have invalid types: (float, int, int, int)
      74d04d2c
  2. 23 Mar, 2017 10 commits
  3. 18 Mar, 2017 4 commits
  4. 16 Mar, 2017 3 commits
  5. 13 Mar, 2017 3 commits
  6. 11 Mar, 2017 4 commits
  7. 10 Mar, 2017 1 commit
  8. 02 Mar, 2017 1 commit
  9. 01 Mar, 2017 1 commit
  10. 28 Feb, 2017 1 commit
  11. 27 Feb, 2017 4 commits
  12. 25 Feb, 2017 1 commit
    • Hang Su's avatar
      allow Pad to take non-number color formats (#69) · 6a8380cf
      Hang Su authored
      Previous assertion only allows numbers for `fill`, which rules out the possibility to pad multi-channel colors. For example, now fill=(255,255,255) or fill="white" can be used to achieve white padding for rgb inputs.
      6a8380cf
  13. 24 Feb, 2017 3 commits
  14. 21 Feb, 2017 1 commit
  15. 16 Feb, 2017 1 commit
  16. 11 Feb, 2017 1 commit
    • Marat Dukhan's avatar
      SqueezeNet 1.0 and 1.1 models (#49) · d44273b4
      Marat Dukhan authored
      * Add SqueezeNet 1.0 and 1.1 models
      * Selectively avoid inplace in SqueezeNet
      * Use Glorot uniform initialization in SqueezeNet
      * Make all ReLU in SqueezeNet in-place
      * Add pretrained SqueezeNet 1.0 and 1.1
      * Minor fixes in SqueezeNet models
      d44273b4