aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* HDFS: Reopen the file when reading if we reach EOF.Gravatar Jonathan Hseu2016-11-17
| | | | | | | - HDFS requires readers to reopen the file to get updated contents when reading. See the context at #5438 - Also switched to HFlush(), which is the non-deprecated Flush() call. - Fixes #5438 Change: 139503549
* Update bazel rules for bower dependencies.Gravatar Dan Smilkov2016-11-17
| | | | Change: 139501626
* Cache Graphs for Run calls and graphs for PartialRun calls separately.Gravatar Suharsh Sivakumar2016-11-17
| | | | | name_to_node_ is only populated on a PartialRun call so if a Run for graph g is followed by a PartialRun to the same graph g, the PartialRun will fail since a cached ReffedClientGraph with no name_to_node map will be returned. We should consider a better solution for this if rebuilding the graph for new partial run calls proves to be too expensive. Change: 139498839
* Remove 'Loading...' title - redundant with the spinnerGravatar Dan Smilkov2016-11-17
| | | | | Also center the text message. Change: 139498679
* Start moving scatter plot methods out of vz-projector and into the scatter plotGravatar Charles Nicholson2016-11-17
| | | | | adapter. Add DataSet reference to Projection class. The projector adapter now listens to the the distance metric changed event, as well as creates + owns scatter plot. Change: 139496759
* Embedding Projector: replace paper-progress with paper-spinner since it is ↵Gravatar Dan Smilkov2016-11-17
| | | | | | GPU accelerated and doesn't block the UI thread. Change: 139495322
* Fix bug with control deps in (experimental) NodeDef function bodies.Gravatar A. Unique TensorFlower2016-11-17
| | | | Change: 139494948
* Another missed _ref in sync_replicas_optimizer.Gravatar A. Unique TensorFlower2016-11-17
| | | | Change: 139491940
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-11-17
| | | | Change: 139490435
* Makes some ref-related dtype methods private.Gravatar A. Unique TensorFlower2016-11-17
| | | | Change: 139484060
* Remove spurious unpack/shape from fully_connected if not needed.Gravatar Ben Lee2016-11-17
| | | | Change: 139483354
* unfinalize the graph at exit of MonitoredSession if it wasn't finalized ↵Gravatar Mustafa Ispir2016-11-17
| | | | | | before MonitoredSession creation. Change: 139481489
* Default to more fertile nodes in TensorForest.Gravatar A. Unique TensorFlower2016-11-17
| | | | Change: 139479566
* tfdbg CLI: Add extend() method to RichTextLinesGravatar Shanqing Cai2016-11-17
| | | | | This method extends the existing lines in the RichTextLines object. It also merges font_attr_segs and annotations by adjusting the line-index keys. Change: 139478133
* Adding __version__ and __git_version__ information into saved meta graphs.Gravatar A. Unique TensorFlower2016-11-17
| | | | Change: 139471934
* TensorBoard: Fix 'gulp server' by redirecting requests from tf-... to tf_...Gravatar Dan Smilkov2016-11-17
| | | | | This brings back fast development environment for the oss users and (temporarily) for internal google users. Change: 139468410
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-11-17
| | | | Change: 139463691
* Add support for `contrib.framework.get_variables` to accept a variable scope ↵Gravatar A. Unique TensorFlower2016-11-17
| | | | | | for its first argument. Change: 139462232
* Add dropout to dynamic_rnn_estimator.Gravatar A. Unique TensorFlower2016-11-17
| | | | Change: 139460368
* Update external TensorBoard.Gravatar Dan Smilkov2016-11-16
| | | | Change: 139404873
* core: Ensure TF_VERSION_STRING follows semantic versioning.Gravatar Asim Shankar2016-11-16
| | | | | | | It currently does not (0.11.0rc2), however, with this unittest future changes to the TF_VERSION_STRING should follow the semantic versioning 2.0 spec described at www.semver.org Change: 139404692
* Rename Projection enum to ProjectionType. Add new Projection class thatGravatar Charles Nicholson2016-11-16
| | | | | contains a full description of a projection. Change: 139402857
* Removing call to Variable.ref() which was missed in earlier change.Gravatar A. Unique TensorFlower2016-11-16
| | | | Change: 139402578
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-11-16
| | | | Change: 139402193
* Publish Trainable, Evaluable docs. Fixes #5622.Gravatar Martin Wicke2016-11-16
| | | | Change: 139400242
* Rename `Tensor` to `Output` in all Python docsGravatar Jonathan Hseu2016-11-16
| | | | | | | | | | | | | | Generated by running: $ find . -name '*.py' | xargs sed -i 's/a `Tensor`/an `Output`/g' $ find . -name '*.py' | xargs sed -i 's/A `Tensor`/An `Output`/g' $ find . -name '*.py' | xargs sed -i 's/`Tensor`/`Output`/g' $ find . -name '*.py' | xargs sed -i 's/`tf.Tensor`/`tf.Output`/g' $ find . -name '*.py' | xargs sed -i 's/`Tensors`/`Output`s/g' $ find . -name '*.py' | xargs sed -i 's/#Tensor)/#Output)/g' $ find . -name '*.py' | xargs sed -i 's/#Tensor\./#Output./g' Manually fixed up lines that exceeded 80 characters after the change. Change: 139400135
* When switching modes programatically, make sure the selection icon reflects theGravatar Nikhil Thorat2016-11-16
| | | | | current mode. Change: 139399924
* Change visibility of the SavedModel shim to public.Gravatar Kiril Gorovoy2016-11-16
| | | | | Delete bundle_shim_constants.h and use the new constant in signature_constants.h instead. Change: 139399882
* Fix a bug where a selection and isolation points does not work by removing theGravatar Nikhil Thorat2016-11-16
| | | | | check for the size of neighbors in the inspector panel. It's unnecessary. Change: 139395143
* Uses 64-bit integers for storing variable dimensions in SaveSliceInfoDef.Gravatar A. Unique TensorFlower2016-11-16
| | | | | 32-bit integers are not enough for representing large scale variables with more than ~2 billion elements. The change is backward compatible as the proto serialization of int32s is the same as int64s. Change: 139393418
* Make selection a rectangular 2D selection that selects on mouse up.Gravatar Nikhil Thorat2016-11-16
| | | | | | | Remove selectionSphere. Add unit tests. Change: 139392209
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-11-16
| | | | Change: 139384822
* Adding merged evaluation module.Gravatar Nathan Silberman2016-11-16
| | | | Change: 139381246
* Clear SummaryWriterCache at the end of training. Fixes #5401.Gravatar Mustafa Ispir2016-11-16
| | | | Change: 139378246
* Rename TF_Port to TF_Output and add a TF_Input type.Gravatar Jonathan Hseu2016-11-16
| | | | Change: 139377074
* Add tests for explicit axis args to reduce_sum, including negative axes.Gravatar A. Unique TensorFlower2016-11-16
| | | | Change: 139374522
* Update generated Python Op docs.Gravatar A. Unique TensorFlower2016-11-16
| | | | Change: 139372651
* More clearly document that functions are experimental.Gravatar A. Unique TensorFlower2016-11-16
| | | | Change: 139372609
* Noted the step at which each image summary was collected in the Tensorboard ↵Gravatar A. Unique TensorFlower2016-11-16
| | | | | | image tab. Change: 139372248
* Update ops-related pbtxt files.Gravatar A. Unique TensorFlower2016-11-16
| | | | Change: 139371811
* Rename `Tensor` to `Output` in all op docs from C++ code.Gravatar Jonathan Hseu2016-11-16
| | | | | | | | | | Generated by running: $ find . -name '*.cc' | xargs sed -i 's/a `Tensor`/an `Output`/g' $ find . -name '*.cc' | xargs sed -i 's/A `Tensor`/An `Output`/g' $ find . -name '*.cc' | xargs sed -i 's/`Tensor`/`Output`/g' And reverting the changes that referred to the C++ Tensor. There are no applicable changes needed in the .h files. Change: 139371663
* Add support for adjoint and batch matmul to tf.matmul.Gravatar A. Unique TensorFlower2016-11-16
| | | | Change: 139370036
* Split ClusterConfig out of RunConfigGravatar Wei Ho2016-11-16
| | | | Change: 139368020
* Fixing global step based delay.Gravatar Mustafa Ispir2016-11-16
| | | | Change: 139364536
* Fixed a race condition in direct sessions: we shouldn't call RecvOutputs if theGravatar Benoit Steiner2016-11-16
| | | | | call to Run has been cancelled otherwise RecvOutputs may block forever. Change: 139352917
* Remove the axes from the picking texture. This is causing selection / hover ↵Gravatar Nikhil Thorat2016-11-16
| | | | | | | issues when there are collisions between the axis color and the picking texture color. Change: 139352122
* Update external TensorBoard.Gravatar Dan Smilkov2016-11-16
| | | | Change: 139349615
* C API: Comment tweaks and some suggested corner case handlingGravatar Asim Shankar2016-11-16
| | | | Change: 139349604
* Fix LoadSavedModelFromLegacySessionBundlePath() to return error if ↵Gravatar Li Lao2016-11-16
| | | | | | LoadSessionBundleFromPathUsingRunOptions() fails. Change: 139348875
* Fixing a bug in the MutableDenseHashTable implementation where the ↵Gravatar Rohan Jain2016-11-16
| | | | | | | difference in shapes between the Insert and Import functions was causing issues with a vector key and scalar value input. Fixed by splitting the LookupInterface CheckKeysAndValueTensors method into one for Insert and the other for Import. Change: 139346138