aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/tutorials/deep_cnn/index.md
Commit message (Collapse)AuthorAge
* We've moved from using the docs in g3doc/ to docs_src/ files, whichGravatar A. Unique TensorFlower2017-02-27
| | | | | get additional processing before being published. Change: 148682342
* Merge changes from github.Gravatar Shanqing Cai2017-01-23
| | | | Change: 145363673
* Internal onlyGravatar Neal Wu2016-12-05
| | | | Change: 141117634
* Moved tensorflow/models to models/tutorials and replaced all tutorial ↵Gravatar Neal Wu2016-12-05
| | | | | | references to tensorflow/models Change: 141106503
* Fix markdown formatting.Gravatar A. Unique TensorFlower2016-11-14
| | | | Change: 139075656
* Merge changes from github.Gravatar Benoit Steiner2016-11-09
| | | | Change: 138675832
* Change callers of tf.image.per_image_whitening() to use ↵Gravatar A. Unique TensorFlower2016-10-25
| | | | | | tf.image.per_image_standardization(). Once these changes are submitted, per_image_whitening() can be removed. Change: 137221877
* Merge changes from github.Gravatar A. Unique TensorFlower2016-10-10
| | | | Change: 135698415
* Fix the CNN tutorial exercise as described here:Gravatar Jon Shlens2016-07-13
| | | | | http://stackoverflow.com/questions/38314964/speeding-up-tensorflow-cifar10-example-for-experimentation Change: 127343817
* Remove second log in CNN tutorial. Fixes #2133. The second log is identical ↵Gravatar Martin Wicke2016-04-28
| | | | | | to the first, which is confusing people. Change: 121029563
* Merge changes from github.Gravatar Illia Polosukhin2016-04-18
| | | | Change: 120185825
* Fix dependencies bugsGravatar Eugene Brevdo2016-03-11
| | | | Change: 116925769
* Fix Scatter*.png figuresGravatar A. Unique TensorFlower2016-01-14
| | | | Change: 112109184
* Change visibility to public in bower.BUILDGravatar A. Unique TensorFlower2016-01-13
| | | | | | | A remote repository cannot refer to the main repository that way and a fix in a future Bazel release will break TensorFlow with the current set-up. Error: http://ci.bazel.io/job/TensorFlow/BAZEL_VERSION=HEAD,PLATFORM_NAME=linux-x86_64/74/console Change: 112056797
* Minor fixes (related) to gpu_event_mgr_test.ccGravatar A. Unique TensorFlower2016-01-13
| | | | | | | | | | This test got out of sync after some recent changes. This CL allows the test function to explicitly stop/start the polling loop so we can test some invarients without non-deterministic timing issues. Also, the change to TensorReferenceVector is now handled correctly in ~EventMgr, and reliably tested. Change: 112016082
* Fix overly pessimistic shape inference in tf.batch_matmul for matrices with ↵Gravatar A. Unique TensorFlower2016-01-12
| | | | | | partially specified shapes. Change: 111953111
* Fix error in link to mnist_with_summaries.pyGravatar Martin Wicke2016-01-12
| | | | Change: 111920304
* some linting fixes to changes brought in from the public.Gravatar Vijay Vasudevan2016-01-07
| | | | Change: 111621725
* Fix some lint errors in image_ops_test.py and word2vec_basic.pyGravatar Vijay Vasudevan2015-12-22
| | | | Change: 110727357
* TensorFlow: upstream changes to git.Gravatar Vijay Vasudevan2015-12-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change 109321497 Move all images to images directory to make docs versioning easier - adjust all paths in the docs to point to the new locations - remove some now redundant section-order tags added for the old website Change 109317807 Added a kernel op to compute the eigendecomposition of a self-adjoint matrix. Added a new kernel op called self_adjoint_eig (and a batch_self_adjoint_eig) that computes the eigendecomposition of a self-adjoint matrix. The return value is the concatenation of the eigenvalues as a row vector, and the eigenvectors. Change 109310773 Change `_read32()` in the MNIST input example to return an int. Currently we return a 1-D numpy array with 1 element. Numpy has recently deprecated the ability to treat this as a scalar, and as a result this tutorial fails. The fix returns the 0th element of the array instead. Change 109301269 Re-arrange TensorBoard demo files. Change 109273589 add ci_build for ci.tensorflow.org Change 109260293 Speed up NodeDef -> OpKernel process by not spending time generating an error message for missing "_kernel" attr that will be thrown away. Change 109257179 TensorFlow:make event_file_loader_test hermetic by using tempfile instead of fixed filenames. Without this change, running event_file_loader_test twice in the same client (locally) causes it to fail, because it writes into the same file and appends another event, instead of starting from scratch. Change 109256464 Minor cleanup in TensorBoard server code Change 109255382 Change to reduce critical section times in gpu_event_mgr.h: (1) Call stream->ThenRecordEvent outside the EventMgr critical section (2) Do memory deallocation outside the critical section Speeds up one configuration of ptb_word_lm from 2924 words per second (wps) to 3278 wps on my desktop machine with a Titan X. Change 109254843 Fix use of uninitialized memory in test. Change 109250995 python_config.sh needs a license header Otherwise the license test fails. Change 109249914 add ci_build for ci.tensorflow.org Change 109249397 Fixes reduce_sum (complex) on GPU segfaults. Fixes #357 Change 109245652 add ci_build for ci.tensorflow.org Base CL: 109321563
* 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: 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: upstream changes to git (doc fixes).Gravatar Vijay Vasudevan2015-11-10
| | | | | | | | | | | | | | | | | | | Changes: - Fix typos across several files contributed by Erik Erwitt, and Michael R. Berstein - Fix bug in translate example (fr->en typo) by schuster - Updates to some documentation (mcoram,shlens,vrv,joshl) - Fix to Android camera demo app window size detection (andrewharp) - Fix to support lookup table of high rank tensors (yleon) - Fix invalid op names for parse_example (dga) Base CL: 107531031
* TensorFlow: Update documentation to address quirks, add whitepaper link,Gravatar Vijay Vasudevan2015-11-09
| | | | | | | and add tentative Dockerfile for GPU. Change install instructions to also suggest upgrading six for Mac. Base CL: 107379398
* TensorFlow: Upstream changes to git.Gravatar Manjunath Kudlur2015-11-08
| | | | | | | | Changes: - Documentation updates. - Relax numpy requirement to 1.9.2 Base CL: 107349632
* TensorFlow: Upstream changes to git.Gravatar Manjunath Kudlur2015-11-08
| | | | | | | | Changes: - Docuementation changes. - Update URL for protobuf submodule. Base CL: 107345722
* TensorFlow: Upstream latest changes to git.Gravatar Vijay Vasudevan2015-11-08
| | | | | | | | | | | | Changes: - Documentation changes: adding some examples for adding_an_op, fixes to some of the markdown, updates to docstrings, etc. - Remove Dockerfile for now -- still undergoing changes. Base CL: 107341050
* TensorFlow: Upstream commits to git.Gravatar Vijay Vasudevan2015-11-07
| | | | | | | | | Changes: - More documentation edits, fixes to anchors, fixes to mathjax, new images, etc. - Add rnn models to pip install package. Base CL: 107312343
* TensorFlow: Upstream latest commits to git.Gravatar Vijay Vasudevan2015-11-07
| | | | | | | | | | Changes: - Updates to Documentation, README.md, installation instructions, anchor links, etc. - Adds Readme for embedding directory. Base CL: 107308461
* TensorFlow: Upstream changes to git.Gravatar Vijay Vasudevan2015-11-06
| | | | | | | | | | | | Changes: - Update a lot of documentation, installation instructions, requirements, etc. - Add RNN models directory for recurrent neural network examples to go along with the tutorials. Base CL: 107290480
* TensorFlow: Upstream latest changes to Git.Gravatar Manjunath Kudlur2015-11-06
| | | | | | | | | Changes: - Updates to installation instructions. - Updates to documentation. - Minor modifications and tests for word2vec. Base CL: 107284192
* 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