aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/example
Commit message (Collapse)AuthorAge
* Added ABSL_DEPRECATED annotations to various deprecated TensorFlow functions.Gravatar A. Unique TensorFlower2018-09-19
| | | | PiperOrigin-RevId: 213693027
* Add more description for a common use case of SequenceExample.Gravatar A. Unique TensorFlower2018-09-11
| | | | PiperOrigin-RevId: 212462406
* fix C++ header guards.Gravatar A. Unique TensorFlower2018-08-21
| | | | PiperOrigin-RevId: 209679086
* Add go_package to proto definition files (#17262)Gravatar Yong Tang2018-05-02
| | | | | | | | | | | | | | | | | | | | | | | | * Add go_package to proto definition files This fix tries to address the issue raised in 16282 by add go_package to proto files, so that generated go files have correct path. This fix fixes 16282. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add go_package to proto definition in tensorflow/core/framework Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add go_package to proto definition in tensorflow/core/example Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add go_package to proto definition in tensorflow/core/example Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* Update feature_util's GetFeatures to show compile-time error for unsupported ↵Gravatar A. Unique TensorFlower2018-04-19
| | | | | | types instead of a link-time error. PiperOrigin-RevId: 193480683
* Fix a typo in the comments.Gravatar A. Unique TensorFlower2018-02-12
| | | | PiperOrigin-RevId: 185459972
* Remove THIRD_PARTY_ from #include guardsGravatar Sanjoy Das2018-01-24
| | | | | | They don't make sense in the open source repository. PiperOrigin-RevId: 183140889
* Fix documentation error in tensorflow feature_utils.hGravatar A. Unique TensorFlower2017-12-22
| | | | | | Need to take address of the example for modifying its feature PiperOrigin-RevId: 179963317
* Update feature_util to support SequenceExample proto.Gravatar A. Unique TensorFlower2017-09-01
| | | | PiperOrigin-RevId: 167359339
* Automated g4 rollback of changelist 167286643Gravatar A. Unique TensorFlower2017-09-01
| | | | PiperOrigin-RevId: 167301509
* Update feature_util to support SequenceExample proto.Gravatar A. Unique TensorFlower2017-09-01
| | | | PiperOrigin-RevId: 167286643
* Prepare to remove a bunch of proto.h includes from tensorflow/core headersGravatar Geoffrey Irving2017-06-29
| | | | | | | | | | | | The goal is to make kernels mostly independent of proto headers, which will let us lock down our .so imports. This CL does not remove any actual headers, but changes a bunch of files so that header removal is possible in a followup CL. It also marks the headers that will be removed with // TODO(b/62899350): Remove RELNOTES: n/a PiperOrigin-RevId: 160552878
* Prepare to not include node_def.proto.h in node_def_util.hGravatar Geoffrey Irving2017-06-23
| | | | | | | | | | The goal is to make kernels mostly independent of proto headers, which will let us lock down our .so imports. This CL makes a bunch of .cc files either include node_def.proto.h themselves or not need the definition of NodeDef; a second CL will make node_def_util.h not include node_def.proto.h. RELNOTES: n/a PiperOrigin-RevId: 159982117
* Minor modernizations, mostly more <memory>Gravatar A. Unique TensorFlower2017-06-12
| | | | PiperOrigin-RevId: 158793461
* Remove unused protobuf header inclusionsGravatar A. Unique TensorFlower2017-06-06
| | | | PiperOrigin-RevId: 158120864
* Fix code that ignores tensorflow::Status.Gravatar Peter Hawkins2017-02-13
| | | | | Add a new tensorflow::Status::IgnoreError() method to mark call sites where a Status has been intentionally ignored. Change: 147402405
* Allow empty tf.Features in the FeatureLists for sparse sequence examples.Gravatar A. Unique TensorFlower2017-01-06
| | | | Change: 143802382
* Update OSS protobuf git depedency version to 3.0.2Gravatar Shanqing Cai2016-09-11
| | | | | | | | | | | | | | 3.0.2 is the latest release. Add a level of indirection to the int64 type in 1) core/example/feature_util.h, feature_util.cc and the places where the type is used 2) tools/proto_text/gen_proto_text_functions_lib.cc and its tests. This is for dealing with the variability of "int64" type definition among different platforms. On some systems, int64 is "long int", while on others it is "long long int". See GitHub Issue for more details: https://github.com/tensorflow/tensorflow/issues/3626. This change list fixes the issue and eliminates the need to stick to an old (3.0.0-beta-2) commit of protobuf. Change: 132814372
* Change for internal compatibility.Gravatar A. Unique TensorFlower2016-07-25
|
* s/Tensorflow/TensorFlow. A losing battle :)Gravatar Vijay Vasudevan2016-07-13
| | | | Change: 127324936
* Parse tf.Example using arena allocation. Dense string benchmark shows 10-20% ↵Gravatar A. Unique TensorFlower2016-07-06
| | | | | | speedup. Change: 126726018
* Python tensorflow.Example parser configuration extractorGravatar Ben Lee2016-06-28
| | | | | | | - Proto definition for configuration - Utility for converting from proto - Visibility change Change: 126145305
* Extend documenation for SequenceExample.Gravatar A. Unique TensorFlower2016-06-15
| | | | Change: 124962631
* Update copyright for 3p/tf/core.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123900938
* Add ExtractExampleParserConfiguration methodGravatar A. Unique TensorFlower2016-05-18
| | | | | | | | | | - Extract the fixed length and variable length feature configurations output tensor names from a given GraphDef. - This will allow for the use case of bypassing an unnecessary tensorflow.Example serialize/deserialize at serving/inference time by extracting the configuration, running the proto -> tensor helpers directly and feeding the graph with the properly named tensors Change: 122636456
* Removing std::string qualification and adding requisite #includes.Gravatar A. Unique TensorFlower2016-05-09
| | | | Change: 121829401
* A set of lightweight wrappers to simplify access to Example proto fields in C++.Gravatar A. Unique TensorFlower2016-05-06
| | | | Change: 121659770
* Removes InferenceExample from tensorflow.Example.Gravatar Noah Fiedel2016-05-03
| | | | | | | Background: InferenceExample was confusing as : (a) it exposed Features rather than Examples and, (b) it was primarily intended for serving optimization. Change: 121402533
* Use java_generate_equals_and_hash=true for Features and Examples. Without ↵Gravatar A. Unique TensorFlower2016-03-02
| | | | | | it, generic reflective implementations of equals() and hashCode() are used, which are much slower. Change: 116150839
* Enables java_multiple_files for all tf protos, and sets theGravatar A. Unique TensorFlower2016-02-09
| | | | | | | | | | | outer class name consistently to <FileName>Protos. Also specifies the java namespace as org.tensorflow.*. This enables compiling tf protos with nano proto for Android (which currently does not work because of file/message name clashes) and follows the same convention for proto3 as used by the API platform. Change: 114279703
* Added 'logging' import to control_flow_ops which is used in the file but not ↵Gravatar A. Unique TensorFlower2016-01-05
| | | | | | imported. Change: 110842260
* TensorFlow: Upstream changes to git.Gravatar Vijay Vasudevan2015-12-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change 109240606 Fix typo Change 109240358 Fix bug in Concat's shape inference due to legacy scalar handling. The shape function was inadvertently converting outputs of unknown shape (rank=None) to vectors of unknown length (rank=1), due to inability to distinguish between legacy scalars and vectors, because `max(1, None)` is 1. Change 109237152 Remove numarray requirement in python_config. Change 109234003 Fix typo in elu documentation. Change 109232946 Python must now be configured via ./configure script Change 109232134 Backported fixes to the tensor comparison operators from the public Eigen repository Change 109231761 Test invalid inputs to softmax_cross_entropy_with_logits. Change 109230218 Backported fixes to the tensor comparison operators from the public Eigen repository Change 109229915 Correct comments in seq2seq to show the right input types for embedding models. (Thanks to hugman@github for bringing this up.) Change 109229118 Fix resize_images example in documentation and allow resize_images to run on a single image with partially-known shape. Change 109228940 Fix demo and node add/remove button spacing Change 109227909 Include Elu in the NN docs. Change 109227059 Adds variable_op_scope and makes variable_scope always add a name_scope. This creates an op scope for variables that makes it easy to create independent operations with a default name by making that name unique for the current scope and it allows explicit names that are not made unique. Change 109224492 Streamline yuv -> rgb conversion to be done in one pass in native code. The entire process now takes ~2ms (including the ByteBuffer.get() calls), down from 10+ ms when the arrays were being interleaved in Java prior to conversion. Also abstracting common yuv->rgb color conversion into helper method. Change 109224389 Add ability to move nodes in and out of auxiliary nodes in graph. Change 109217177 Update generated Op docs. Change 109215030 Implementation of the ELU activation function: http://arxiv.org/abs/1511.07289 Change 109209848 When GPUBFCAllocator runs out of memory, also log a summary of chunks in use by size. Change 109206569 Switched to the public version of the Eigen::sign method since it supports complex numbers. Change 109199813 Modify tensorflow.SequenceExample to support multiple-length sequences. Base CL: 109241553
* TensorFlow: more features, performance improvements, and doc fixes.Gravatar Vijay Vasudevan2015-11-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes: - Add Split/Concat() methods to TensorUtil (meant for convenience, not speed) by Chris. - Changes to linear algebra ops interface by Rasmus - Tests for tensorboard by Daniel - Fix bug in histogram calculation by Cassandra - Added tool for backwards compatibility of OpDefs. Tool Checks in history of opdefs and their changes, checks for backwards-incompatible changes. All done by @josh11b - Fix some protobuf example proto docs by Oliver - Add derivative of MatrixDeterminant by @yaroslavvb - Add a priority queue queue by @ebrevdo - Doc and typo fixes by Aurelien and @dave-andersen - Speed improvements to ConvBackwardFilter by @andydavis - Improve speed of Alexnet on TitanX by @zheng-xq - Add some host memory annotations to some GPU kernels by Yuan. - Add support for doubles in histogram summary by @jmchen-g Base CL: 108158338
* TensorFlow: Doc and linter fixes, some additional tests andGravatar Vijay Vasudevan2015-11-16
| | | | | | | | | | | | | | error handling, updates to website. Changes: - Removes redundant reshape from image models by @mrry - Default TensorBoard to localhost by @danmane - Reformatting of tensorflow/core by @josh11b - Make tutorials backwards compatible to 0.5.0 by @girving - Improve print documentation (md files not updated). - Add proper scrolling to sitemap by @martinwicke Base CL: 107956254
* TensorFlow: Initial commit of TensorFlow library.Gravatar Manjunath Kudlur2015-11-06
TensorFlow is an open source software library for numerical computation using data flow graphs. Base CL: 107276108