aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/lib/io/tf_record.py
Commit message (Collapse)AuthorAge
* Updating function and class tf_export decorators for endpoints according toGravatar Anna R2018-10-01
| | | | | | | | | | | https://github.com/tensorflow/community/pull/16. In addition to the changes in the doc, I made the following updates (these changes make sense to me and I didn't notice them when compiling the doc): * deprecate saved_model.builder.SavedModelBuilder - replaced with saved_model.SavedModelBuilder * deprecate python_io.tf_record_iterator - replaced with io.tf_record_iterator * deprecate python_io.TFRecordWriter - replaced with io.TFRecordWriter * move reduce_join to tf.string PiperOrigin-RevId: 215253944
* Add compression options to Python's TFRecordOptionsGravatar A. Unique TensorFlower2018-09-06
| | | | | | Plumb these through to RecordWriterOptions PiperOrigin-RevId: 211894734
* Add out_status to py_record_writer.writeGravatar A. Unique TensorFlower2018-08-16
| | | | | | Throw in TFRecordWriter.write() if write fails PiperOrigin-RevId: 209030158
* Add nullptr checks so that Write() and Flush() fail instead of segfaultGravatar A. Unique TensorFlower2018-08-06
| | | | PiperOrigin-RevId: 207596283
* Apply "Raise exception in SWIG on bad TF_Status" to base.iGravatar Akshay Modi2018-04-03
| | | | | | Minor fixes to make this work. PiperOrigin-RevId: 191457070
* Merge changes from github.Gravatar Jacques Pienaar2018-03-21
| | | | PiperOrigin-RevId: 189945839
* Adding tf_export decorators/calls to TensorFlow functions and constants.Gravatar Anna R2018-01-31
| | | | PiperOrigin-RevId: 184020524
* Merge changes from github.Gravatar A. Unique TensorFlower2017-06-27
| | | | PiperOrigin-RevId: 160344052
* Propagate any I/O errors during close() when using TFRecordWriter.Gravatar Jonathan Hseu2017-05-17
| | | | PiperOrigin-RevId: 156376328
* Doc fixit task 2.Gravatar Jonathan Hseu2017-02-13
| | | | Change: 147404726
* Throw an exception on failure to read records in tf_record_iteratorGravatar Jonathan Hseu2016-11-29
| | | | Change: 140506546
* Seal tf.python_io's interface.Gravatar Patrick Nguyen2016-11-01
| | | | Change: 137843740
* Add support for GZIP (and other future compression types) to TFRecordReader ↵Gravatar A. Unique TensorFlower2016-09-22
| | | | | | | in python. Also clean up Record{Reader,Writer}Options creation to reuse logic and log errors. Change: 133973785
* Propagate the tensorflow::Status as a Python exception for various file openGravatar Jonathan Hseu2016-09-20
| | | | | | | operations. Note that this changes the exception type of file not found errors from IOError to errors.NotFoundError. Change: 133720319
* Plumb the existing support for gzip compression in TensorFlowGravatar A. Unique TensorFlower2016-09-13
| | | | | | out to the RecordWriter/Reader, and add tests to validate its compatibility with external gzip libraries. Change: 133081474
* Add support to TFRecordReader and writer to read/write from zlib compressed ↵Gravatar A. Unique TensorFlower2016-06-16
| | | | | | files. Change: 125110928
* Update copyright for 3p/tf/python.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123900456
* Context manager should return self.Gravatar A. Unique TensorFlower2016-02-18
| | | | Change: 114985229
* TensorFlow: Upstream changes to gitGravatar Manjunath Kudlur2015-11-25
| | | | | | | | | Changes: - Updates to docs - Several changes for Python 3 compatibility - Added license headers Base CL: 108710566
* TensorFlow: Improve performance of AlexnetGravatar Manjunath Kudlur2015-11-20
| | | | | | | | | | | | | | | | | | | | | | Changes: * error message that refers to removed `DefaultSession` method. * -Wnull-conversion warnings * the "_start_time" attr for recvs when the flag "--brain_enable_scheduling_for_recvs" is set. * typo in tutorial data download progress message. * a typo ("however their installing"=>"however installing"). * typo, rename "TensorFlow Mechanics" to "How To" to be consistent with the website. * a typo ("subtact"=>"subtract"). * protobuf examples in comments in tensorflow::Example.proto. * formula formatting in MNIST beginner tutorial * negative fraction-of-queue-full stats * protobuf inclusion path so that Android demo will build under Blaze. * small typo (moderatly > moderately) * Session.run() to check that tensor arguments come from the session's graph. * another six import * seq2seq typo in bazel command Base CL: 108349164
* TensorFlow: upstream changes from the afternoon.Gravatar Vijay Vasudevan2015-11-11
| | | | | | | | | | | | | | | | | | | | | | | | | | Changes: - futurize --stage2 changes for Python 3 compatibility by @girving. - Small updates to documentation by @vrv, schuster and others - Account for failure of std::thread::hardware_concurrency by @ebrevdo. - More changes for backwards-compatibility tests by Josh - Updates to python op doc generation by Josh - Added support for using the best-fit allocator via ConfigProto by @vrv. - Rename LocalSession to DirectSession, since local was a bad name for it. - Enable tf.nn.moments() to work with tensors of unknown shape by @mrry. GITHUB_ISSUE: 139 - Changes for Android build by Andrew. Base CL: 107645181
* 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