1. 25 Aug, 2018 1 commit
  2. 24 Aug, 2018 2 commits
  3. 23 Aug, 2018 3 commits
  4. 22 Aug, 2018 3 commits
    • bananabowl's avatar
      Merge pull request #5167 from tensorflow/bananabowl-patch-1 · 8adb303f
      bananabowl authored
      Text classification tutorial clarification
      8adb303f
    • bananabowl's avatar
      Update basic_text_classification.ipynb · b6d93c56
      bananabowl authored
      Rename "num_examples" to "num_reviews" to be consistent with the "one-hot-encode" size description: "num_words * num_reviews".
      b6d93c56
    • Reed's avatar
      Fix convergence issues for MLPerf. (#5161) · 64710c05
      Reed authored
      * Fix convergence issues for MLPerf.
      
      Thank you to @robieta for helping me find these issues, and for providng an algorithm for the `get_hit_rate_and_ndcg_mlperf` function.
      
      This change causes every forked process to set a new seed, so that forked processes do not generate the same set of random numbers. This improves evaluation hit rates.
      
      Additionally, it adds a flag, --ml_perf, that makes further changes so that the evaluation hit rate can match the MLPerf reference implementation.
      
      I ran 4 times with --ml_perf and 4 times without. Without --ml_perf, the highest hit rates achieved by each run were 0.6278, 0.6287, 0.6289, and 0.6241. With --ml_perf, the highest hit rates were 0.6353, 0.6356, 0.6367, and 0.6353.
      
      * fix lint error
      
      * Fix failing test
      
      * Address @robieta's feedback
      
      * Address more feedback
      64710c05
  5. 21 Aug, 2018 6 commits
  6. 20 Aug, 2018 3 commits
  7. 19 Aug, 2018 2 commits
  8. 18 Aug, 2018 2 commits
  9. 17 Aug, 2018 1 commit
  10. 16 Aug, 2018 8 commits
  11. 15 Aug, 2018 4 commits
  12. 14 Aug, 2018 4 commits
    • alope107's avatar
      Transformer partial fix (#5092) · 6f5967a0
      alope107 authored
      * Fix Transformer TPU crash in Python 2.X.
      
      - Tensorflow raises an error when tf_inspect.getfullargspec is called on
      a functools.partial in Python 2.X. This issue would be hit during the
      eval stage of the Transformer TPU model. This change replaces the call
      to functools.partial with a lambda to work around the issue.
      
      * Remove unused import from transformer_main.
      
      * Fix lint error.
      6f5967a0
    • 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
    • Joel Shor's avatar
      Merge pull request #5086 from Intel-tensorflow/pr-set-inter-intra-op-dcgan · c2f755c4
      Joel Shor authored
      Add intra/inter op support for dcgan model
      c2f755c4
    • MyungSung Kwak's avatar
      Modify flag name for the checkpoint path · 2949cfd8
      MyungSung Kwak authored
      
      
      change flag name to checkpoint_dir according to the variable name
      used by the checkpoint_utils within tensorflow python framework.
      
      The important point is that when run the run_eval script, an error
      occurs due to the different flag name.
      Signed-off-by: default avatarMyungSung Kwak <yesmung@gmail.com>
      2949cfd8
  13. 13 Aug, 2018 1 commit