"vscode:/vscode.git/clone" did not exist on "13382f88abd20238330f8cb2a473fff4abca3a89"
  1. 02 Sep, 2018 1 commit
  2. 30 Aug, 2018 6 commits
  3. 29 Aug, 2018 1 commit
  4. 28 Aug, 2018 2 commits
  5. 27 Aug, 2018 5 commits
  6. 25 Aug, 2018 1 commit
  7. 24 Aug, 2018 2 commits
  8. 23 Aug, 2018 3 commits
  9. 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
  10. 21 Aug, 2018 7 commits
  11. 20 Aug, 2018 3 commits
  12. 19 Aug, 2018 2 commits
  13. 18 Aug, 2018 2 commits
  14. 17 Aug, 2018 1 commit
  15. 16 Aug, 2018 1 commit
    • Jules Gagnon-Marchand's avatar
      Deterministic dataset order fix (#5098) · 468d8bb6
      Jules Gagnon-Marchand authored
      * Deterministic dataset order fix
      
      In order for the order of the files to be deterministic, in `tf.data.Dataset.list_files(..., shuffle)`, shuffle needs to be True, otherwise different iterator inits will yield different file orders
      
      * removed unnecessary shuffle of filenames
      
      * Removed the `_FILE_SHUFFLE_BUFFER` definition
      468d8bb6