aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Merge pull request #7711 from caisq/nightly-linksGravatar Yifei Feng2017-02-20
|\ | | | | Update nightly pip wheel and history URLS after upgrade to ubuntu:16.04
* | Update doc string to indicate clip_by_value accepts tensors as min and max ↵Gravatar Ankesh Anand2017-02-20
| | | | | | | | | | | | | | | | arguments too (#7692) * Update doc string to indicate clip_by_value accepts tensors as min and max arguments too * Fix typo
| * Update nightly pip wheel and history URLS after upgrade to ubuntu:16.04Gravatar Shanqing Cai2017-02-20
|/
* Error message improvement (#7678)Gravatar Reid Pryzant2017-02-20
| | | | | | | | * Error message improvement See https://github.com/tensorflow/tensorflow/issues/7675 * Spacing fix
* Merge pull request #7673 from aldanor/bugfix/example-mnist-layer-importGravatar Shanqing Cai2017-02-20
|\ | | | | Make learn/mnist.py work again
| * Make learn/mnist.py work againGravatar Ivan Smirnov2017-02-19
|/
* Remove outdated link to nightly-matrix-android builds (#7655)Gravatar Andrew Harp2017-02-19
| | | This has already been replaced with the nightly-android links.
* wrong code fix (#7627)Gravatar selay012017-02-18
| | | maybe slip of a pen
* Merge pull request #7629 from vrv/branch_147845195Gravatar Vijay Vasudevan2017-02-17
|\ | | | | Branch 147845195
| * Merge commit for internal changesGravatar Vijay Vasudevan2017-02-17
|/|
* | Fix build error, where nccl requires -lrt link option (#7271)Gravatar LI Yi2017-02-17
| | | | | | | | | | | | | | | | * Fix build error, where nccl requires -lrt link option * Remove config_setting defines in nccl.BUILD and curl.BUILD * Fix typo in curl.BUILD
* | Update shape checking logic in einsum (#7387)Gravatar Jihun Choi2017-02-17
| | | | | | | | | | | | | | | | | | | | | | | | * Update shape checking logic in einsum * Fix typo * Make modifications on einsum be more structured and simpler * Remove unnecessary parts * Fix indentation
* | fix windows build (#7617)Gravatar Changming Sun2017-02-17
| |
| * Add "output_layer" argument to the BasicDecoder.Gravatar Eugene Brevdo2017-02-17
| | | | | | | | Change: 147845195
| * Add shard_count to affine_test.Gravatar A. Unique TensorFlower2017-02-17
| | | | | | | | Change: 147844228
* | Update LSTMBlockCell to use LSTMStateTuple as state (#6810)Gravatar Jihun Choi2017-02-17
| | | | | | | | | | | | * Update LSTMBlockCell, LSTMBlockFusedCell to use LSTMStateTuple as state * Revert modification in return values on LSTMBlockFusedCell
| * tfdbg: let BaseDebugWrapperSession support graph_def and as_default()Gravatar Shanqing Cai2017-02-17
| | | | | | | | Change: 147837972
* | Update text_classification.py (#7607)Gravatar Gautam2017-02-16
| | | | | | Adding x_transform_train = vocab_processor.fit_transform(x_train), x_transform_test = vocab_processor.transform(x_test) so that it would be easy for programmers to understand
* | Merge pull request #7608 from vrv/branch_147800865Gravatar Vijay Vasudevan2017-02-16
|\ \ | | | | | | Branch 147800865
* | | fix typo (#7603)Gravatar Yuxin Wu2017-02-16
| | |
| * | Merge commit for internal changesGravatar Vijay Vasudevan2017-02-16
|/| | | |/
| * Change gradients to be computed with respect to variable ref rather thanGravatar A. Unique TensorFlower2017-02-16
| | | | | | | | | | | | | | | | | | | | snapshot. Variables may create another snapshot or their ref may be exposed via public API (e.g., var.op.outputs[0] or graph.as_graph_element(var) which happens fairly often inside libraries or collection serialization). On the other hand, tf.gradients() use convert_to_tensor() which returns a snapshot, and gradients were computed with respect to this particular snapshot, which makes the gradients incorrect. Change: 147800865
| * Removing note about TF 1.0 alpha, now that 1.0 has officially been released.Gravatar Sanders Kleinfeld2017-02-16
| | | | | | | | Change: 147788449
| * Support softmax on hexagon and remove some custom ops from graph transfererGravatar A. Unique TensorFlower2017-02-16
| | | | | | | | Change: 147788426
| * Android demo: add sample images to README.md and update model installation ↵Gravatar Andrew Harp2017-02-16
| | | | | | | | | | | | instructions. Change: 147787804
| * Go: Add PartialRun support.Gravatar Asim Shankar2017-02-16
| | | | | | | | Change: 147783087
| * Upgrade Gulp TypeScriptGravatar Justine Tunney2017-02-16
| | | | | | | | Change: 147781771
| * Add std:: prefix to STL non-type names.Gravatar A. Unique TensorFlower2017-02-16
| | | | | | | | Change: 147779725
| * Task 6: sealing up bayesflow.{entropy, monte_carlo, variational_inference}Gravatar Olivia Nordquist2017-02-16
| | | | | | | | Change: 147778589
| * Workaround FlatMap windows build breakage.Gravatar A. Unique TensorFlower2017-02-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Windows builds break on the following simplified example: template <typename Key, ...> class FlatSet { public: typedef Key value_type; class const_iterator { public: typedef FlatSet::value_type value_type; // Fails on windows }; }; The build succeeds by adding 'typename': typedef typename FlatSet::value_type value_type; // OK on windows <simplified log of compiler error> flatmap.h(110): warning C4346: 'difference_type': dependent name is not a type (compiling source file ...cancellation.cc) flatmap.h(110): note: prefix with 'typename' to indicate a type (compiling source file ...cancellation.cc) flatmap.h(161): note: see reference to class template instantiation 'tensorflow::gtl::FlatMap<Key,Val,Hash,Eq>::iterator' being compiled (compiling source file ...cancellation.cc) flatmap.h(376): note: see reference to class template instantiation 'tensorflow::gtl::FlatMap<Key,Val,Hash,Eq>' being compiled (compiling source file ...cancellation.cc) flatmap.h(110): error C2061: syntax error: identifier 'difference_type' (compiling source file ...cancellation.cc) </simplified log of compiler error> This is a bug in the windows compiler. It is true that FlatSet::value_type is a dependent name, but it also refers to the "current instantiation", so 'typename' shouldn't be required. For details see: http://en.cppreference.com/w/cpp/language/dependent_name#Current_instantiation But it doesn't hurt to add typename; it is simply redundant. Change: 147776071
* | [CMake] Disable BUILD_TESTING for Eigen. (#7586)Gravatar Derek Murray2017-02-16
| | | | | | We don't actually run these tests, so building them is a waste of time. They can also cause surprising interactions with the environment (e.g. see issue #7374), in cases where some of the test dependencies are available.
| * Deprecate `Bijector.inverse_and_inverse_log_det_jacobian`.Gravatar Joshua V. Dillon2017-02-16
| | | | | | | | Change: 147770857
* | Merge pull request #7594 from vrv/branch_147758266Gravatar Vijay Vasudevan2017-02-16
|\ \ | | | | | | Branch 147758266
| | * Changed the second argument of WaitForNotificationWithTimeout() to mean ↵Gravatar Yuan Yu2017-02-16
| | | | | | | | | | | | | | | | | | microseconds from milliseconds. Change: 147764063
| | * Upgraded Eigen to avoid a compilation warning on MacOSGravatar Benoit Steiner2017-02-16
| | | | | | | | | | | | Change: 147763615
| | * Add `Sigmoid` bijector.Gravatar Joshua V. Dillon2017-02-16
| | | | | | | | | | | | Change: 147761442
| * | Merge commit for internal changesGravatar Vijay Vasudevan2017-02-16
|/| | | |/
| * Added visibility to development area.Gravatar A. Unique TensorFlower2017-02-16
| | | | | | | | Change: 147758266
| * Blacklist already-failing tests in GPU PIP buildsGravatar Shanqing Cai2017-02-16
| | | | | | | | Change: 147757405
| * Temporarily disable large graph tests that may be causingGravatar Vijay Vasudevan2017-02-16
| | | | | | | | | | timeouts on test infra. Change: 147757378
* | Merge pull request #7593 from yifeif/masterGravatar Vijay Vasudevan2017-02-16
|\ \ | | | | | | Merge 1.0.0 back to master
* \ \ Merge pull request #7592 from vrv/branch_147741833Gravatar Vijay Vasudevan2017-02-16
|\ \ \ | | | | | | | | Branch 147741833
| | | * Add compute_output_shape method to tf.layers objects.Gravatar Eugene Brevdo2017-02-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a port of the Keras get_output_shape_for layer method; and the name change was discussed with Francois first. Implemented this method for the tf.layers.Dense class. Change: 147753001
| | | * Set a more descriptive error when a Run() call is cancelled due to session ↵Gravatar Derek Murray2017-02-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | closure. Also fixes a potential memory leak, where the worker-side state of a failed Run() call would not be cleaned up. Change: 147752067
| | | * Integrate SyncReplicasOptimizer with Estimators.Gravatar Mustafa Ispir2017-02-16
| | | | | | | | | | | | | | | | | | | | There is an hidden dependency between when 'apply_gradient' and get_chief_queue_runner() are called. This cl postpones creation of the queue to the initialization of the Session. In Estimator, Session is created after forming the graph/training-op. That means it is after the apply_gradient. Change: 147746938
| | * | Merge tag 'v1.0.0' back to master.Gravatar Yifei Feng2017-02-16
| | |\ \
| * | | | Merge commit for internal changesGravatar Vijay Vasudevan2017-02-16
|/| | | | | | |_|/ | |/| |
* | | | Upgrade docker images for distributed testing to unbutu:16.04 (#7580)Gravatar Shanqing Cai2017-02-16
| |/ / |/| |
| * | [TF:XLA] Refactor XlaOpRegistry, moving metadata about how to compile ↵Gravatar Peter Hawkins2017-02-16
| | | | | | | | | | | | | | | | | | | | | operators on a device into a struct. No functional changes. Change: 147741833
* | | Apply gofmt to Go API (#7574)Gravatar Kai Sasaki2017-02-16
| | |