aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Support other dtypes in BeamSearchDecoder initialization (#17591)Gravatar Guillaume Klein2018-03-14
|
* Fix issue of tf.gfile.Exists with Unicode on Windows (#17697)Gravatar Yong Tang2018-03-13
| | | | | | | | | | | | | | | | | | * Fix issue of tf.gfile.Exists with Unicode on Windows This fix tries to address the issue raised in 17695 where tf.gfile.Exists with Unicode on Windows does not work as expected. The issuse comes from the usage of `_access` (vs. _waccess). This fix adds a test and fixes the issue. This fix fixes 17695. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Replace _access with _waccess on Windows. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* Fix the messed up list format in using_tpu.md (#17561)Gravatar ImSheridan2018-03-13
| | | | | | * Fix the list format in using_tpu.md * Fix the indent before tf.contrib.cluster_resolver.TPUClusterResolver
* Run selective registration tool even if it's just been built (#17570)Gravatar Jason Sadler2018-03-13
|
* Fix link (#17665)Gravatar Oleg Zabluda2018-03-13
| | | | | | | | * Fix link * fix link to use the "document" syntax. the api_guide pages are counted as "documents" not api pages, so they use the document syntax [described here](https://www.tensorflow.org/community/documentation#links_in_markdown).
* Merge pull request #17688 from frankchn/branch_188893722Gravatar Frank Chen2018-03-13
|\ | | | | Branch 188893722
* | Fix warning in embedding_ops (#17681)Gravatar Yong Tang2018-03-13
| | | | | | | | | | | | | | | | | | | | | | | | | | * Fix warning in embedding_ops This fix fixes the warning in embedding_ops.py by switching from keep_dims to keepdims for tf.reduce_prod Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Fix warning in contrib/learn/python/learn/ops/embeddings_ops.py Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* | Fix broken link of tf.train.Example in recurrent_quickdraw.md (#17678)Gravatar Yong Tang2018-03-13
| | | | | | | | | | | | | | | | In recurrent_quickdraw.md, the link `${tf.train.Example}` is not rendered correctly. This fix fixes the broken link with correct rendering. Now the link is rendered the same way as tf.train.Example in api_guides/python/reading_data.md and extend/new_data_formats.md Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* | Fix format issue in ffmpeg (#17685)Gravatar Yong Tang2018-03-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix format issue in ffmpeg This fix tries to address the issue raised in 17533 where some ouput generated by ffmpeg may not be parsed correctly. There are two issues in the ffmpeg parser: 1. The size of the frame could be `rgb24, 640x360 [SAR 1:1 DAR 16:9]`, with extra `[...]` after `640x360`. 2. The number of frames could be `frame=12488` or `frame= 166`, with or without the sapce (` ` in between `frame=` and the number). This fix fixes the parser issues in ffmpeg. This fix fixes 17533. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Fix ffmpeg parser for `frame= 166 ` or `frame=12488 ` Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* | fix typo (#17466)Gravatar Daniel Erenrich2018-03-13
| | | | | | espected -> expected
* | Update wide.md (#17481)Gravatar ryantimjohn2018-03-13
| | | | | | Alphabetized races: standard procedure in documentation.
* | Improvements for Android TV (#17524)Gravatar Hanchen Li2018-03-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Improvements for Android TV To build for Android TV, user need to modify the orientation from "portrait" to "landscape" for the four activities in tensorflow/examples/android/AndroidManifest.xml 1. Show a toast when no camera is detected 2. Game Controller L1 button and remote controller DRAP_Center also triggers debug output 3. Fix the layout of Stylize app on Android TV. The style selector will be on right side 4. User can use DPAD to navigate through styles in Stylize app * Fix README grammar, keyDown pass down, and unused import * Calculate style selector width and num of style in a row programmatically * Fix imports
* | Fix the broken link of tf-learn's iris tutorial also some format and typo ↵Gravatar ImSheridan2018-03-13
| | | | | | | | | | | | | | | | (#17594) * Fix the broken link of tf-learn's iris tutorial and also fix some messed up format and typo * revert a wrong typo fix
* | Fix broken link in programmers_guide/faq and some minor format (#17636)Gravatar ImSheridan2018-03-13
| | | | | | | | | | | | * Fix broken link in programmers_guide/faq and some minor format * revert the change of The * is an asterisk denoting a footnote, which is referenced at the bottom on line 296
* | Fix TensorBoard tutorial links to the wrong MNIST tutorial example code (#17640)Gravatar ImSheridan2018-03-13
| |
* | Fix broken links in tutorial/layers (#17649)Gravatar ImSheridan2018-03-13
| | | | | | | | | | | | | | | | | | | | * Fix the broken links in tutorial/layers * revert link which is already working with - split title * correct new lines leads to broken link * revert changes to keep existing anchors
| * Fix pip_package BUILD fileGravatar Frank Chen2018-03-13
| |
| * Branch 188893722Gravatar Frank Chen2018-03-13
|/|
| * Enable arithmetic optimizations for Fill nodes that are all zeros or ones.Gravatar A. Unique TensorFlower2018-03-13
| | | | | | | | PiperOrigin-RevId: 188893722
| * Add TFLite Interpreter bindings.Gravatar A. Unique TensorFlower2018-03-13
| | | | | | | | PiperOrigin-RevId: 188890943
| * Performing the finalization of the LayerCollection outside of ↵Gravatar A. Unique TensorFlower2018-03-13
| | | | | | | | | | | | FisherEstimator's constructor. This allows layers and losses to be registered after the FisherEstimator (or KFACOptimizer) has been constructed. PiperOrigin-RevId: 188889252
| * include the graph.pb->tensorboard script in pip packageGravatar Mark Daoust2018-03-13
| | | | | | | | | | | | | | | | | | | | | | | | This will allow you to run it with: `python -m tensorflow.python.tools.import_pb_to_tensorboard ...` Without any additional downloads or setup. see #8854 PiperOrigin-RevId: 188888501
| * Internal changeGravatar A. Unique TensorFlower2018-03-13
| | | | | | | | PiperOrigin-RevId: 188880419
| * [TFLite] Don't always treat inputs and outputs as encoded floats.Gravatar Eugene Brevdo2018-03-13
| | | | | | | | PiperOrigin-RevId: 188880237
* | Merge pull request #17655 from MarkDaoust/freeze_graphGravatar Mark Daoust2018-03-13
|\ \ | | | | | | Fix the script entry point for freeze_graph.
| | * Introduce output fusion for (A dot B) * alphaGravatar A. Unique TensorFlower2018-03-13
| | | | | | | | | | | | | | | | | | We allow now to fuse (A dot B) times a constant, which is available in cublas. PiperOrigin-RevId: 188878210
| | * PiperOrigin-RevId: 188860028Gravatar A. Unique TensorFlower2018-03-13
| | |
| | * tfdbg: add reference to the TensorBoard Debugger Plugin in README.mdGravatar Shanqing Cai2018-03-13
| | | | | | | | | | | | PiperOrigin-RevId: 188828898
| | * PiperOrigin-RevId: 188860028Gravatar A. Unique TensorFlower2018-03-13
| | |
| | * tfdbg: add reference to the TensorBoard Debugger Plugin in README.mdGravatar Shanqing Cai2018-03-13
| | | | | | | | | | | | PiperOrigin-RevId: 188828898
| | * PiperOrigin-RevId: 188860028Gravatar A. Unique TensorFlower2018-03-13
| | |
* | | Merge pull request #17651 from frankchn/branch_188738133Gravatar Frank Chen2018-03-12
|\ \ \ | | | | | | | | Branch 188738133
* | | | contrib/lite: spelling/code tweaks (#17531)Gravatar brett koonce2018-03-12
| | | |
| | | * tfdbg: add reference to the TensorBoard Debugger Plugin in README.mdGravatar Shanqing Cai2018-03-12
| | | | | | | | | | | | | | | | PiperOrigin-RevId: 188828898
* | | | jpeg.BUILD: Using --cpu instead of --android_cpu (#17508)Gravatar Yun Peng2018-03-12
| | | |
* | | | MKL DNN: fix the TF1.6 speed issue by fixing MKL DNN LRN taking the optimum ↵Gravatar Mohammad Ashraf Bhuiyan2018-03-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | path (#17605) * MKL DNN: fix the TF1.6 speed issue by fixing MKL DNN LRN * fixed typos in the doc for LrnRewrite
* | | | Exclude duplicate test from all test (#17610)Gravatar ted chang2018-03-12
| | | |
| | | * Merges (embedding|indicator)_column with their sequence counterparts, and ↵Gravatar A. Unique TensorFlower2018-03-12
| | | | | | | | | | | | | | | | | | | | | | | | exposes sequence methods under tf.contrib.feature_column. PiperOrigin-RevId: 188826187
| | | * Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2018-03-12
| | | | | | | | | | | | | | | | PiperOrigin-RevId: 188824362
| | | * Support NHWC <--> HWNC permutation.Gravatar A. Unique TensorFlower2018-03-12
| | | | | | | | | | | | | | | | PiperOrigin-RevId: 188824058
| | | * Go: Update generated wrapper functions for TensorFlow ops.Gravatar A. Unique TensorFlower2018-03-12
| | | | | | | | | | | | | | | | PiperOrigin-RevId: 188817976
* | | | Merge pull request #17661 from brettkoonce/quantize_spGravatar Shanqing Cai2018-03-12
|\ \ \ \ | | | | | | | | | | contrib/quantize: minor spelling
| | | | * Merge changes from github.Gravatar Shanqing Cai2018-03-12
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 188817194
* | | | | Merge pull request #17529 from yifeif/saved_model_cliGravatar Martin Wicke2018-03-12
|\ \ \ \ \ | | | | | | | | | | | | Add scan command to saved_model_cli to check for security sensitive ops.
| | | | | * Remove integration_tests directory and associated files.Gravatar A. Unique TensorFlower2018-03-12
| | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 188815493
| | | | | * Demystify MaterializeShapes a bit.Gravatar Max Galkin2018-03-12
| | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 188812445
| | | | | * Make tf.add_to_collections visible.Gravatar A. Unique TensorFlower2018-03-12
| | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 188807786
| | | | | * [XLA:Tools] Make hlo_runner understand --xla_hlo_profile.Gravatar A. Unique TensorFlower2018-03-12
| | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 188803724
| | | | | * Don't evaluate control flow in EvaluateConstantTensor.Gravatar Skye Wanderman-Milne2018-03-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ExtractConstantSubgraph doesn't copy control edges, which are sometimes necessary to correctly evaluate conds (at the very least). Avoid evaluating conds at all to address this. PiperOrigin-RevId: 188803649
| | * | | | contrib/quantize: minor spellingGravatar Brett Koonce2018-03-12
| |/ / / / |/| | | |