aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/api/golden
Commit message (Collapse)AuthorAge
* Add deprecation notice for BasicRNNCell, which will be replaced by ↵Gravatar Scott Zhu2018-10-01
| | | | | | keras.SimpleRNNCell. PiperOrigin-RevId: 215249611
* Internal change.Gravatar Anna R2018-09-28
| | | | PiperOrigin-RevId: 215005698
* Introduce the abstraction of RunHandler which each DirectSession can use forGravatar A. Unique TensorFlower2018-09-28
| | | | | | | | | the duration of a single RunInternal() call from RunHandlerPool. It is used for running inter-op closures with a global scheduler (which in the future) to improve both median and tail latency (for use-cases like CPU inference). In the case that global pools aren't used, this change should be a no-op. PiperOrigin-RevId: 214992852
* Automated rollback of commit 750466c6e6624d279de7f9a43accd682d487509cGravatar Revan Sopher2018-09-27
| | | | PiperOrigin-RevId: 214853846
* [tf.data Introducing tf.data.Dataset.reduce() which reduces elements of a ↵Gravatar Jiri Simsa2018-09-27
| | | | | | (finite) dataset to a single element. PiperOrigin-RevId: 214852364
* Updating the V2 variables API.Gravatar Alexandre Passos2018-09-27
| | | | PiperOrigin-RevId: 214824023
* Introduce the abstraction of RunHandler which each DirectSession can use forGravatar A. Unique TensorFlower2018-09-27
| | | | | | | | | the duration of a single RunInternal() call from RunHandlerPool. We want to leverage this abstraction for improving the cross-session inter-op parallelism for lower latency inference in the future. In the case that global pools aren't used, this change should be a no-op. PiperOrigin-RevId: 214818187
* Add tf.strings.unicode_script, which detects the script of a unicode codepointGravatar A. Unique TensorFlower2018-09-27
| | | | | | based on standard ranges. PiperOrigin-RevId: 214796357
* Add xlogy and xdivy op.Gravatar A. Unique TensorFlower2018-09-26
| | | | PiperOrigin-RevId: 214700693
* Add "encoding" attribute to string length op, which controls how "string ↵Gravatar A. Unique TensorFlower2018-09-25
| | | | | | | | | | length" is defined: * BYTE: The number of bytes in each string. (Default) * UTF8: The number of UTF-8 encoded Unicode code points in each string. RELNOTES: Add option to calculate string length in Unicode characters PiperOrigin-RevId: 214478470
* Merge pull request #21509 from facaiy:ENH/feature_importances_for_boosted_treeGravatar TensorFlower Gardener2018-09-25
|\ | | | | | | PiperOrigin-RevId: 214462540
* | Documentation for tf.map_fn in Eager mode.Gravatar Debidatta Dwibedi2018-09-24
| | | | | | | | PiperOrigin-RevId: 214376416
* | Deprecate do_quantize_training_on_graphdef.Gravatar Suharsh Sivakumar2018-09-24
| | | | | | | | PiperOrigin-RevId: 214263489
* | Merge pull request #21715 from hsgkim:volume_patchesGravatar TensorFlower Gardener2018-09-23
|\ \ | | | | | | | | | PiperOrigin-RevId: 214177065
* | | Add searchsorted (ie lower/upper bound) op.Gravatar A. Unique TensorFlower2018-09-20
| | | | | | | | | | | | PiperOrigin-RevId: 213863392
* | | This CL adds a new `tf.print` operator that more closely aligns with the ↵Gravatar A. Unique TensorFlower2018-09-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | standard python `print` method, and deprecates the old `tf.Print` operator (to be removed in in v2.0). It follows the design doc specified in https://github.com/tensorflow/community/pull/14 and additionally incorporates the community feedback and design review decisions. This CL adds two new internal graph operators: a StringFormat operator that formats a template string with a list of input tensors to insert into the string and outputs a string scalar containing the result, and a PrintV2 operator that prints a string scalar to a specified output stream or logging level. The formatting op is exposed at `tf.strings.Format`. A new python method is exposed at `tf.print` that takes a list of inputs that may be nested structures and may contain tensors, formats them nicely using the formatting op, and returns a PrintV2 operator that prints them. In Eager mode and inside defuns this PrintV2 operator will automatically be executed, but in graph mode it will need to be either added to `sess.run`, or used as a control dependency for other operators being executed. As compared to the previous print function, the new print function: - Has an API that more closely aligns with the standard python3 print - Supports changing the print logging level/output stream - allows printing arbitrary (optionally nested) data structures as opposed to just flat lists of tensors - support printing sparse tensors - changes printed tensor format to show more meaningful summary (recursively print the first and last elements of each tensor dimension, instead of just the first few elements of the tensor irregardless of dimension). PiperOrigin-RevId: 213709924
| | * Merge remote-tracking branch 'upstream/master' into ↵Gravatar Yan Facai (颜发才)2018-09-20
| | |\ | |_|/ |/| | | | | ENH/feature_importances_for_boosted_tree
* | | Python interface for Boosted Trees model explainability (currently includes ↵Gravatar A. Unique TensorFlower2018-09-19
| | | | | | | | | | | | | | | | | | directional feature contributions); fixed ExampleDebugOutputs bug where it errors with empty trees. PiperOrigin-RevId: 213658470
* | | Add a new function to load kernel libraries and library folders.Gravatar Gunhan Gulsoy2018-09-18
| | | | | | | | | | | | PiperOrigin-RevId: 213549838
* | | [tf.data] Introducing `tf.data.Dataset.window(size, shift, stride, ↵Gravatar Jiri Simsa2018-09-17
| | | | | | | | | | | | | | | | | | | | | | | | drop_remainder)`, which can be used for combining elements of input dataset into "windows". A window is itself a finite dataset and, among other things, can be used for generalized batching (see https://github.com/tensorflow/community/pull/5 for details). PiperOrigin-RevId: 213360134
* | | Export tf.keras.sparse_categorical_accuracy. Copied from PR #21790.Gravatar Martin Wicke2018-09-14
| | | | | | | | | | | | | | | | | | closes #21790, fixes #21735 PiperOrigin-RevId: 213003724
* | | Automated rollback of commit 56d4fc8ff67f48294ae5cb0a7f9ff3d954463aa3Gravatar A. Unique TensorFlower2018-09-13
| | | | | | | | | | | | PiperOrigin-RevId: 212847619
* | | Add a `namedtuple` factory that accepts doc-strings.Gravatar Mark Daoust2018-09-13
| | | | | | | | | | | | PiperOrigin-RevId: 212828094
| | * Merge branch 'master' into ENH/feature_importances_for_boosted_treeGravatar Yan Facai (颜发才)2018-09-13
| | |\ | |_|/ |/| |
| | * BLD: update golden fileGravatar Yan Facai (颜发才)2018-09-12
| | |
* | | Add support for populating a feature columns to output tensors dictionary in ↵Gravatar A. Unique TensorFlower2018-09-11
| | | | | | | | | | | | | | | | | | input_layer. PiperOrigin-RevId: 212528172
* | | Adds generator support directly to Keras's fit, evaluate, and predict.Gravatar A. Unique TensorFlower2018-09-11
| | | | | | | | | | | | PiperOrigin-RevId: 212516939
* | | Adding forgotten exports.Gravatar A. Unique TensorFlower2018-09-10
| | | | | | | | | | | | PiperOrigin-RevId: 212333784
* | | Support not automatically watching (trainable) accessed variables in ↵Gravatar Tom Hennigan2018-09-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | GradientTape. For more complex use cases this allows fine grained control over what is tracked by the tape. PiperOrigin-RevId: 211948236
* | | Add compression options to Python's TFRecordOptionsGravatar A. Unique TensorFlower2018-09-06
| | | | | | | | | | | | | | | | | | Plumb these through to RecordWriterOptions PiperOrigin-RevId: 211894734
* | | [tf.data] Adding support for `num_parallel_calls` to ↵Gravatar Jiri Simsa2018-09-06
| | | | | | | | | | | | | | | | | | | | | | | | `tf.data.Dataset.interleave`. Unlike the `tf.data.contrib.parallel_interleave` whose parallelism is tied to the `cycle_length` argument, the newly introduced `num_parallel_calls` argument of `tf.data.Dataset.interleave` is decoupled from the `cycle_length` argument and identifies the degree of parallelism to use for fetching output elements. PiperOrigin-RevId: 211886816
| * | fix argument nameGravatar Hoeseong Kim2018-09-07
| | |
* | | Extend ConditionalAccumulator with SUM functionality.Gravatar Zhenyu Tan2018-09-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | Previously take_grad represents the average gradients being aggregated. However this does not cover other use cases such as summing quantiles, or summing probability distributions from parallel workers. This change extends the functionality. PiperOrigin-RevId: 211824519
* | | Deprecate `tf.train.input_producer()` and related APIs.Gravatar Derek Murray2018-09-05
| | | | | | | | | | | | | | | | | | These APIs are based on queue runners, which have been deprecated and will be removed in TensorFlow 2.0. They have been replaced with `tf.data.Dataset`, which provides a more efficient version of the same functionality. PiperOrigin-RevId: 211727844
* | | Expose an axis argument for VocabInfo, which allows for warm-starting of the ↵Gravatar Eddie Zhou2018-09-05
| | | | | | | | | | | | | | | | | | second axis of Tensors through tf.train.warm_start. Note that the underlying initializer already has this functionality (for example, for output layers). PiperOrigin-RevId: 211709879
* | | Deprecate `tf.ReaderBase` and related APIs.Gravatar Derek Murray2018-09-05
| | | | | | | | | | | | | | | | | | These APIs are based on queue runners, which have been deprecated and will be removed in TensorFlow 2.0. They have been replaced with `tf.data.Dataset`, which provides a more efficient version of the same functionality. PiperOrigin-RevId: 211708268
* | | Deprecate `tf.train.batch()` and related APIs.Gravatar Derek Murray2018-09-05
| | | | | | | | | | | | | | | | | | These APIs are based on queue runners, which have been deprecated and will be removed in TensorFlow 2.0. They have been replaced with `tf.data.Dataset`, which provides a more efficient version of the same functionality. PiperOrigin-RevId: 211700442
* | | There were two different error reporting formats within TensorFlow: `{{key ↵Gravatar A. Unique TensorFlower2018-09-04
| | | | | | | | | | | | | | | | | | value}}` and `^^key:value^^`. This change consolidate these two format. PiperOrigin-RevId: 211550259
* | | Merge pull request #20108 from yongtang:19910-glorot_uniform_initializerGravatar TensorFlower Gardener2018-08-31
|\ \ \ | | | | | | | | | | | | PiperOrigin-RevId: 211169413
* | | | Add a batch sequence example parsing op, part 2.Gravatar Patrik Sundberg2018-08-31
| |_|/ |/| | | | | | | | PiperOrigin-RevId: 211082479
* | | Fix documentation of variable constraint, aggregation, synchronization.Gravatar A. Unique TensorFlower2018-08-30
| | | | | | | | | | | | | | | | | | Fix order of arguments to `get_local_variable()` to match `get_variable()`. PiperOrigin-RevId: 211005616
* | | Keras Initializers change to default values for RandomUniform, RandomNormal,Gravatar A. Unique TensorFlower2018-08-30
| | | | | | | | | | | | | | | | | | and TruncatedNormal. PiperOrigin-RevId: 210999565
* | | Deprecate `tf.train.QueueRunner` and related APIs.Gravatar Derek Murray2018-08-30
| | | | | | | | | | | | | | | | | | Queue runners will be removed in TensorFlow 2.0. They have been replaced with `tf.data` input pipelines, which provide a more efficient version of the same functionality. PiperOrigin-RevId: 210964268
* | | Add new aggregation mode "ONLY_FIRST_TOWER" and use it for the globalGravatar A. Unique TensorFlower2018-08-29
| | | | | | | | | | | | | | | | | | | | | step counter. This allows us to get rid of the increment_var() function and just use a standard assign_add(). PiperOrigin-RevId: 210743165
* | | Adds a tf.ensure_shape function as a substitute for tensor.set_shape, which ↵Gravatar Rachel Lim2018-08-28
| | | | | | | | | | | | | | | | | | validates the true shape of the tensor at runtime. PiperOrigin-RevId: 210570878
* | | Add estimator.export_saved_model without removing export_savedmodel in order ↵Gravatar Karmel Allison2018-08-28
| | | | | | | | | | | | | | | | | | to stage TF 2.0 removal of export_savedmodel. The new export_saved_model will not have the option to strip_default_attrs; the new behavior is that default attributes are always stripped. PiperOrigin-RevId: 210559617
| | * change golden/v2/tensorflow.pbtxtGravatar Hoeseong Kim2018-08-28
| | | | | | | | | | | | | | | | | | Running the API compatibility test only checks for pbtxt files under directory v1. Manually added extract_volume_patches under v2 as extract_image_patches is registered under v2 as well.
* | | Make init_scope() publicGravatar A. Unique TensorFlower2018-08-28
| | | | | | | | | | | | PiperOrigin-RevId: 210505860
| | * update golden & pylintGravatar Hoeseong Kim2018-08-28
| | |
* | | Adds a sparse.expand_dims operation to TensorFlow.Gravatar A. Unique TensorFlower2018-08-23
| | | | | | | | | | | | PiperOrigin-RevId: 209986849