1. 22 Feb, 2018 3 commits
  2. 20 Feb, 2018 1 commit
  3. 17 Feb, 2018 8 commits
  4. 13 Feb, 2018 4 commits
  5. 10 Feb, 2018 1 commit
    • Zhichao Lu's avatar
      Merged commit includes the following changes: · 1efe98bb
      Zhichao Lu authored
      185215255  by Zhichao Lu:
      
          Stop populating image/object/class/text field when generating COCO tf record.
      
      --
      185213306  by Zhichao Lu:
      
          Use the params batch size and not the one from train_config in input_fn
      
      --
      185209081  by Zhichao Lu:
      
          Handle the case when there are no ground-truth masks for an image.
      
      --
      185195531  by Zhichao Lu:
      
          Remove unstack and stack operations on features from third_party/object_detection/model.py.
      
      --
      185195017  by Zhichao Lu:
      
          Matrix multiplication based gather op implementation.
      
      --
      185187744  by Zhichao Lu:
      
          Fix eval_util minor issue.
      
      --
      185098733  by Zhichao Lu:
      
          Internal change
      
      185076656  by Zhichao Lu:
      
          Increment the amount of boxes for coco17.
      
      --
      185074199  by Zhichao Lu:
      
          Add config for SSD Resnet50 v1 with FPN.
      
      --
      185060199  by Zhichao Lu:
      
          Fix a bug in clear_detections.
          This method set detection_keys to an empty dictionary instead of an empty set. I've refactored so that this ...
      1efe98bb
  6. 09 Feb, 2018 1 commit
    • Manoj Plakal's avatar
      Explicitly specify checkpoint version. · d9f6b6f3
      Manoj Plakal authored
      
      TF Saver now requires specifying the checkpoint version even when restoring to avoid errors when we specify
      a path to a checkpoint file instead of a directory.
      d9f6b6f3
  7. 06 Feb, 2018 1 commit
  8. 05 Feb, 2018 1 commit
  9. 03 Feb, 2018 6 commits
  10. 02 Feb, 2018 3 commits
  11. 01 Feb, 2018 1 commit
    • Zhichao Lu's avatar
      Merged commit includes the following changes: · 7a9934df
      Zhichao Lu authored
      184048729  by Zhichao Lu:
      
          Modify target_assigner so that it creates regression targets taking keypoints into account.
      
      --
      184027183  by Zhichao Lu:
      
          Resnet V1 FPN based feature extractors for SSD meta architecture in Object Detection V2 API.
      
      --
      184004730  by Zhichao Lu:
      
          Expose a lever to override the configured mask_type.
      
      --
      183933113  by Zhichao Lu:
      
          Weight shared convolutional box predictor as described in https://arxiv.org/abs/1708.02002
      
      --
      183929669  by Zhichao Lu:
      
          Expanding box list operations for future data augmentations.
      
      --
      183916792  by Zhichao Lu:
      
          Fix unrecognized assertion function in tests.
      
      --
      183906851  by Zhichao Lu:
      
          - Change ssd meta architecture to use regression weights to compute loss normalizer.
      
      --
      183871003  by Zhichao Lu:
      
          Fix config_util_test wrong dependency.
      
      --
      183782120  by Zhichao Lu:
      
          Add __init__ file to third_party directories.
      
      --
      183779109  by Zhichao Lu:
      
          Setup regular version s...
      7a9934df
  12. 31 Jan, 2018 2 commits
  13. 30 Jan, 2018 2 commits
  14. 26 Jan, 2018 1 commit
  15. 24 Jan, 2018 3 commits
    • cclauss's avatar
      Use r-string to avoid raising Python 3 SyntaxError · 65abca9a
      cclauss authored
      In Python 2 the string and the r-string behave the same:
      $ __python2__
      ```
      >>> '$\Uparrow$ '
      '$\\Uparrow$ '
      >>> r'$\Uparrow$ '
      '$\\Uparrow$ '
      >>> '$\Uparrow$ ' == r'$\Uparrow$ '
      True
      ```
      
      In Python 3 the string raises a Syntax Error while the r-string works just like Python 2.
      ```
      >>> '$\Uparrow$ '
        File "<stdin>", line 1
      SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 1-2: truncated \UXXXXXXXX escape
      >>> r'$\Uparrow$ '
      '$\\Uparrow$ '
      ```
      65abca9a
    • cclauss's avatar
      file() was removed in Python 3 (en masse) · 9cac7637
      cclauss authored
      9cac7637
    • cclauss's avatar
      Fix Python 3 Syntax Errors (en masse) · c9202db9
      cclauss authored
      c9202db9
  16. 23 Jan, 2018 2 commits