1. 26 Jun, 2018 1 commit
  2. 22 Jun, 2018 1 commit
  3. 21 Jun, 2018 1 commit
    • Norman Mu's avatar
      Fix typo in detectron config · ea9c76d9
      Norman Mu authored
      Summary: change _DEPCRECATED_KEYS -> _DEPRECATED_KEYS
      
      Differential Revision: D8553498
      
      fbshipit-source-id: 1431a9552efce47be3aa40718c954521481950de
      ea9c76d9
  4. 12 Jun, 2018 2 commits
    • Kaiming He's avatar
      Update from-scratch results in GN/README.md · b5dada9b
      Kaiming He authored
      Summary: Update from-scratch results in GN/README.md, given the freeze_at=0 fix.
      
      Reviewed By: ir413
      
      Differential Revision: D8369007
      
      fbshipit-source-id: a7df13364125dac09379c5aed647f4f9a8bbf23b
      b5dada9b
    • Kaiming He's avatar
      Move freeze_at to config; fix an issue of GN from-scratch · f8ffc87c
      Kaiming He authored
      Summary:
      Move freeze_at to config.
      
      Fix GN from-scratch scripts with freeze_at=0.
      
      Reviewed By: rbgirshick
      
      Differential Revision: D8325882
      
      fbshipit-source-id: 9f362cb269ffd962056dfe8adc888083cff3d9b2
      f8ffc87c
  5. 11 Jun, 2018 1 commit
  6. 07 Jun, 2018 1 commit
    • Xinlei Chen's avatar
      Remove gt_boxes, seems no longer used? · a04ed18a
      Xinlei Chen authored
      Summary: Remove code that seems redundant.
      
      Reviewed By: rbgirshick
      
      Differential Revision: D8200163
      
      fbshipit-source-id: c3096c77a1c6b33eab5dc0ceb9414f3bdbbf71e9
      a04ed18a
  7. 06 Jun, 2018 1 commit
  8. 01 Jun, 2018 1 commit
  9. 26 May, 2018 1 commit
    • Kaiming He's avatar
      fix a bug of aspect ratio grouping · 0375b05e
      Kaiming He authored
      Summary: Fix a bug of aspect ratio grouping to support training batch size > 2.
      
      Reviewed By: rbgirshick
      
      Differential Revision: D8157964
      
      fbshipit-source-id: 28eec6246cd6daf83aef30da245fe7bf340fbbc9
      0375b05e
  10. 25 May, 2018 1 commit
  11. 24 May, 2018 5 commits
  12. 14 May, 2018 1 commit
  13. 09 May, 2018 1 commit
  14. 08 May, 2018 2 commits
  15. 28 Apr, 2018 1 commit
  16. 27 Apr, 2018 1 commit
  17. 26 Apr, 2018 1 commit
    • Yangqing Jia's avatar
      Use new style caffe2 targets · 8f2f5cf9
      Yangqing Jia authored
      Summary:
      This basically allows Detectron to be built without having to include the many cmake files from Caffe2. Caffe2 now properly exports utility functions and dependent libraries, and so one can use the new style targets "caffe2_library" and "caffe2_gpu_library" directly.
      
      This should also solve problems like #251 after we update the conda version. cc pjh5.
      Closes https://github.com/facebookresearch/Detectron/pull/286
      
      Reviewed By: ir413
      
      Differential Revision: D7397696
      
      Pulled By: Yangqing
      
      fbshipit-source-id: 7a47e0addedd4b3c88dd8e2e130afdad04706acc
      8f2f5cf9
  18. 25 Apr, 2018 3 commits
    • Kaiming He's avatar
      typo · 3c4c7f67
      Kaiming He authored
      Summary: fix a typo in url
      
      Reviewed By: ppwwyyxx
      
      Differential Revision: D7746833
      
      fbshipit-source-id: a0873424ef91625d67f3fbfe44d2b1c5c9c8a4b8
      3c4c7f67
    • Kaiming He's avatar
      add GN documentation · 0dbea626
      Kaiming He authored
      Summary: Add GN documentation.
      
      Reviewed By: rbgirshick, ppwwyyxx
      
      Differential Revision: D7745878
      
      fbshipit-source-id: 8a49160b1e4026fbcf41082df4a3a8d0f8e90d85
      0dbea626
    • Kaiming He's avatar
      add group norm · c7692eb7
      Kaiming He authored
      Summary: Add GroupNorm support to master Detectron.
      
      Reviewed By: rbgirshick
      
      Differential Revision: D7611892
      
      fbshipit-source-id: dc4fb84a0e2167b05fd8a94ee0ff1ab1c21369b7
      c7692eb7
  19. 11 Apr, 2018 1 commit
  20. 04 Apr, 2018 1 commit
  21. 03 Apr, 2018 1 commit
  22. 30 Mar, 2018 2 commits
    • Ashwin Bharambe's avatar
      Move `test_net.main()` wrapper inside `test_engine.run_inference` · 22636d44
      Ashwin Bharambe authored
      Summary:
      Another small refactor trying to reduce non-trivial logic existing
      inside the `tools` scripts. I considered moving `main` as
      `run_inference_and_check_expected_results` but that just sounded uglier.
      
      Reviewed By: rbgirshick
      
      Differential Revision: D7432976
      
      fbshipit-source-id: a31106e11cf0c1d93781fc9a696d2afee553f3d6
      22636d44
    • Ashwin Bharambe's avatar
      Make it possible to run non-EDPM detectron workflows via fblearner · 31738256
      Ashwin Bharambe authored
      Summary:
      This diff adds a `vanilla_detectron` workflow so we can invoke the
      non-elastic detectron code (essentially whatever is run by `train_net.par`)
      via the standard fblearner toolchain. (FAIR folks typically use `fry` for this
      purpose...)
      
      I moved most of the code from `train_net.py` to `lib/utils/train.py` so it can
      be re-used.
      
      Note that as of now the `vanilla_detectron` workflow does not run testing.
      That's coming.
      
      Reviewed By: rbgirshick
      
      Differential Revision: D7325559
      
      fbshipit-source-id: 41359b47132bc79d1fcd5c5992a3589b391d149e
      31738256
  23. 29 Mar, 2018 1 commit
    • Ross Girshick's avatar
      Add DensePose to README.md · 32acc20c
      Ross Girshick authored
      Reviewed By: ir413
      
      Differential Revision: D7430607
      
      fbshipit-source-id: 0e8c5f6dc223063505da3620744c8a58b9f5034f
      32acc20c
  24. 28 Mar, 2018 1 commit
  25. 23 Mar, 2018 1 commit
    • shenyunhang's avatar
      Miss a 'None' in return values of create_model() in tools/train_net.py · 7d8da094
      shenyunhang authored
      Summary:
      When 'model_final.pkl' exists, the following error occurs:
      ```shell
      INFO train_net.py: 184: model_final.pkl exists; no need to train!
      Traceback (most recent call last):
        File "tools/train_net.py", line 280, in <module>
          main()
        File "tools/train_net.py", line 119, in main
          checkpoints = train_model()
        File "tools/train_net.py", line 128, in train_model
          model, weights_file, start_iter, checkpoints, output_dir = create_model()
      ValueError: need more than 4 values to unpack
      ```
      It misses a return value.
      Closes https://github.com/facebookresearch/Detectron/pull/309
      
      Reviewed By: ir413
      
      Differential Revision: D7366733
      
      Pulled By: rbgirshick
      
      fbshipit-source-id: c37b3b2e5b2aff38d46ca521a9d79613049255cb
      7d8da094
  26. 22 Mar, 2018 1 commit
  27. 20 Mar, 2018 5 commits