- 27 Aug, 2018 1 commit
-
-
Mark Daoust authored
-
- 25 Aug, 2018 1 commit
-
-
Toby Boyd authored
* Add top_5 to to eval. * labels shape to [?] from [?,1] matches unittest.
-
- 24 Aug, 2018 2 commits
-
-
Billy Lamberta authored
Typo fix
-
Steven Schmatz authored
-
- 23 Aug, 2018 3 commits
-
-
pkulzc authored
Update the runtime version in bash script
-
Wentao Xu authored
The bash script to submit training job for pets detection has runtime-version of 1.8. This will trigger `TypeError: non_max_suppression() got an unexpected keyword argument 'score_threshold'` on the Google Cloud since 1.8 and older does not support this keyword argument. Therefore, update this runtime version to 1.9, which is the most recent runtime version that is published on June 27, 2018. See https://github.com/tensorflow/models/issues/5056 https://cloud.google.com/ml-engine/docs/tensorflow/runtime-version-list
-
Cameron Rudnick authored
Updated model_lib to use min_score_threshold and max_num_boxes_to_visualize from the eval config.
-
- 22 Aug, 2018 3 commits
-
-
bananabowl authored
Text classification tutorial clarification
-
bananabowl authored
Rename "num_examples" to "num_reviews" to be consistent with the "one-hot-encode" size description: "num_words * num_reviews".
-
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
-
- 21 Aug, 2018 7 commits
-
-
Mark Daoust authored
These have all moved to https://github.com/tensorflow/docs/tree/master/site/en
-
Billy Lamberta authored
Basic_Regression notebook: Python2 compatibility
-
Billy Lamberta authored
-
Billy Lamberta authored
-
Billy Lamberta authored
Docs: Grammar fix
-
Stafford Williams authored
-
Stafford Williams authored
-
- 20 Aug, 2018 3 commits
-
-
Taylor Robie authored
* perform a codecs check and remove unicode \ufeff if utf-8 is not present * delint
-
Mark Daoust authored
Docs: fix iteration count
-
Stafford Williams authored
Update the epoc/iteration count noted to match the code.
-
- 19 Aug, 2018 2 commits
-
-
ChrisDEV authored
-
Mark Daoust authored
Update plt.grid args to avoid deprecation message
-
- 18 Aug, 2018 2 commits
- 17 Aug, 2018 1 commit
-
-
Niru Maheswaranathan authored
Modify flag name for the checkpoint path
-
- 16 Aug, 2018 8 commits
-
-
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
-
Mark Daoust authored
Adding illustrative charts to basic classification tutorial
-
Taylor Robie authored
-
Mark Daoust authored
-
Mark Daoust authored
-
Mark Daoust authored
-
Billy Lamberta authored
Nits in basic_regression.ipynb
-
Max Ghenis authored
* Remove trailing spaces * Fix "dependant" spelling error * Remove periods at the end of comments* * Add spaces after commas* \* For internal consistency and consistency with PEP8 examples
-
- 15 Aug, 2018 4 commits
-
-
Wei Wang authored
-
Manoj Plakal authored
Add a pointer to a Colab for the embeddings
-
zan authored
-
Malcolm Slaney authored
Added a pointer to a Colab that illustrates how to use the public AudioSet models to generate embeddings for user-specified sounds.
-
- 14 Aug, 2018 3 commits
-
-
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.
-
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
-
Joel Shor authored
Add intra/inter op support for dcgan model
-