"vscode:/vscode.git/clone" did not exist on "03b34e9ee612eeb66d91bae118dd3cb5dbeaab08"
  1. 07 Dec, 2018 2 commits
  2. 05 Dec, 2018 1 commit
  3. 03 Dec, 2018 2 commits
  4. 30 Nov, 2018 6 commits
  5. 27 Nov, 2018 3 commits
  6. 17 Nov, 2018 1 commit
  7. 13 Oct, 2018 5 commits
  8. 12 Oct, 2018 2 commits
  9. 06 Oct, 2018 1 commit
  10. 05 Oct, 2018 1 commit
  11. 04 Oct, 2018 2 commits
  12. 03 Oct, 2018 1 commit
  13. 01 Oct, 2018 1 commit
    • netfs's avatar
      Add `--image_bytes_as_serving_input` flag to export SavedModel (#5393) · 295259c3
      netfs authored
      with serving signature that accepts JPEG image bytes instead
      of a fixed size [HxWxC] image tensor.
      
      Passing JPEG image bytes is easier for inference/serving use
      cases. The model internally resizes/crops the JPEG image to
      required [HxWxC] tensor before passing it on for actual model
      inference.
      
      This change aligns with Cloud TPU/ResNet-50 model that offers a
      similar interface (jpeg bytes) for inferencing here:
      
      https://github.com/tensorflow/tpu/tree/master/models/official/resnet
      
      NOTE: This flag is set to `True` by default for ImageNet, and is
      disallowed for CIFAR (as it does not apply to CIFAR).
      295259c3
  14. 28 Sep, 2018 1 commit
  15. 19 Sep, 2018 1 commit
  16. 05 Sep, 2018 2 commits
  17. 02 Sep, 2018 2 commits
  18. 01 Sep, 2018 2 commits
  19. 27 Aug, 2018 2 commits
    • Taylor Robie's avatar
      ResNet eval_only mode (#5186) · d1c48afc
      Taylor Robie authored
      * Make ResNet robust to the case that epochs_between_evals does not divide train_epochs, and add an --eval_only option
      
      * add some comments to make the control flow easier to follow
      
      * address PR comments
      d1c48afc
    • Toby Boyd's avatar
      Add 5 epoch warmup to resnet (#5176) · 9bf586de
      Toby Boyd authored
      * Add 5 epoch warmup
      
      * get_lr with warm_up only for imagenet
      
      * Add base_lr, remove fp16 unittest arg validation
      
      * Remove validation check stopping v1 and FP16
      9bf586de
  20. 25 Aug, 2018 1 commit
  21. 14 Aug, 2018 1 commit
    • Zac Wellmer's avatar
      Resnet transfer learning (#5047) · 7bffd37b
      Zac Wellmer authored
      * warm start a resent with all but the dense layer and only update the final layer weights when fine tuning
      
      * Update README for Transfer Learning
      
      * make lint happy and variable naming error related to scaled gradients
      
      * edit the test cases for cifar10 and imagenet to reflect the default case of no fine tuning
      7bffd37b