History log of /external/tensorflow/tensorflow/examples/how_tos/reading_data/convert_to_records.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
b2db981a6731e978453862a73dab892bc674db68 01-Dec-2017 Sourabh Bajaj <sourabhbajaj@google.com> Merge changes from github.

PiperOrigin-RevId: 177526301
/external/tensorflow/tensorflow/examples/how_tos/reading_data/convert_to_records.py
db249414890236c92e9ac45e231bf5c26ec503ef 17-Jan-2017 Patrick Nguyen <drpng@google.com> Merge changes from github.
Change: 144729490
/external/tensorflow/tensorflow/examples/how_tos/reading_data/convert_to_records.py
6812d46b957e32eba37c67384cc2136908d7a1ff 27-Oct-2016 Vijay Vasudevan <vrv@google.com> Parse argparse flags, then pass unparsed flags through to argv via tf.app.run()
to allow argparse + tf.flags to play nicely with each other.
Change: 137405161
/external/tensorflow/tensorflow/examples/how_tos/reading_data/convert_to_records.py
42bacdd75d4da44e6fa8ab87652af36512ae5ccd 19-Oct-2016 Patrick Nguyen <drpng@google.com> Seal tf.app's interface.
Change: 136540437
/external/tensorflow/tensorflow/examples/how_tos/reading_data/convert_to_records.py
8018346e12f9fef76cdc7accc248de17514f6d38 10-Oct-2016 A. Unique TensorFlower <gardener@tensorflow.org> Replace tf.flags usage with argparse everywhere
Change: 135688498
/external/tensorflow/tensorflow/examples/how_tos/reading_data/convert_to_records.py
56ab88ce1bd59c312c34677eee242df45bda2336 18-Aug-2016 A. Unique TensorFlower <gardener@tensorflow.org> Parameterize validation size.
Change: 130618104
/external/tensorflow/tensorflow/examples/how_tos/reading_data/convert_to_records.py
abe9ab326625105adb3c9d46c027931aec947d1f 01-Aug-2016 A. Unique TensorFlower <gardener@tensorflow.org> Merge changes from github.
Change: 128958134
/external/tensorflow/tensorflow/examples/how_tos/reading_data/convert_to_records.py
e09808e0e4d05ffe4be97f563f0f14ae2ebb20dd 29-Jun-2016 A. Unique TensorFlower <gardener@tensorflow.org> Fixing broken code in how_tos for fully_connected_reader.

- Added initialize_local_variables()
- Updated the code that generates the dataset since it no longer worked either.
- This in turn required adding a "reshape" option that controls whether or not the imaged data is flattened.
Change: 126165145
/external/tensorflow/tensorflow/examples/how_tos/reading_data/convert_to_records.py
122cdce33e3e0a01a7f82645617317530aa571fb 02-Jun-2016 A. Unique TensorFlower <nobody@tensorflow.org> Update copyright for 3p/tf.
Change: 123901292
/external/tensorflow/tensorflow/examples/how_tos/reading_data/convert_to_records.py
56f1d64998744ad655fe5c428658a13be35b865e 11-Mar-2016 Eugene Brevdo <ebrevdo@gmail.com> Fix dependencies bugs
Change: 116925769
/external/tensorflow/tensorflow/examples/how_tos/reading_data/convert_to_records.py
7760ce56fc3ab4ab8cdc408e29d8ad8b539c417e 11-Feb-2016 Josh Levenberg <josh11b@tensorflow.org> Get rid of some import cruft.
Change: 114374558
/external/tensorflow/tensorflow/examples/how_tos/reading_data/convert_to_records.py
cd53f3c3302c9312c1840389a9988a879b8b9dd5 08-Dec-2015 Vijay Vasudevan <vrv@google.com> TensorFlow: upstrea changes from git.

Change 109628097
Fix gcc 4.8.1 compile

Modified from patch by @assolini here:

https://github.com/tensorflow/tensorflow/issues/405
Change 109624275
Make preview frame ImageReader global so that it does not get GC'd.

This may fix an issue with connecting to the camera on some devices where the underlying Surface is prematurely cleaned up (http://stackoverflow.com/questions/33437961/android-camera-2-api-bufferqueue-has-been-abandoned).
Change 109620599
- improved test a little to make it easier to understand as it serves as an
example for users
Change 109614953
TensorFlow: update tutorials/howtos to point to correct
location of files, show python example in addition to bazel.
Change 109612732
TensorFlow: move reading_data into examples, change data dir
to /tmp/data. Validated that they all run, but these
probably need a selftest at some point.
Change 109608695
Apply 'gate_gradients' only when there is more than one real gradients.
Change 109605014
There are 3 obvious places to start using TensorFlow. 2/3 of the starting points do not have a link to the installation instructions.
Change 109604287
Make the `tf.reshape` shape function more restrictive.

Previously, it did not raise a construction-time error if the input
shape and the new shape were incompatible; now it detects this and
raises a `ValueError`.
Change 109603375
TensorFlow: Move word2vec_basic.py from g3doc/ to examples/

There are no additional libraries this uses, so nothing else
needs to be done
Change 109601289
TensorBoard tag 3
Change 109600908
Decrease number of scalar values stored by TensorBoard.
10k is more than displays nicely.
Change 109599464
Fix "smart restart" functionality in TensorBoard (it throws away dead data)
After restarts, a file_version event is created that always has step 0.
We need to ignore this.
Change 109597667
Switch to using /dev/urandom for TensorFlow randomness.

Using /dev/random leads to slowdown when running in an environment
with poor access to an entropy source (such as some VMs). /dev/urandom
has more predictable performance, and we don't require
cryptographically secure random number generation, so a PRNG is good
enough.

Also removes the use of the RNG in DirectSession construction. This
was being used to generate a session handle, which is not necessary
(since a DirectSession owns its devices, we don't need a unique handle
to key the OpSegment objects registered with the various devices).

This addresses bugs that have been reported on the mailing list and
Stack Overflow.
Change 109596906
Add an is_unsigned property to dtype
Change 109596830
Remove unnecessary fill in clip_by_value
Change 109591880
Remove Android demo's libpthread.so dummy file (required by protobuf) from repo and generate it at compile-time.

This makes the Android demo more portable, as the generated file will now always be the correct archictecture for linking.
Change 109589028
Isolating out the RTTI part of TensorFlow and add non-RTTI backups for Android.
This saves about 400KB of the compiled library, when compiling the Android
tensorflow target with -fno-rtti.
Change 109589018
Internal reworking of LSTMCell.
Change 109588229
Allow bool-valued tensors to be persisted.
Change 109577175
TensorBoard host defaults to 0.0.0.0
Change 109551438
TensorFlow: move mnist g3doc tutorials into tensorflow/examples.

Update examples to point to the correct location.

Adds tests to make sure they don't regress, do some lint cleanup.

Base CL: 109630240
/external/tensorflow/tensorflow/examples/how_tos/reading_data/convert_to_records.py