aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src
Commit message (Collapse)AuthorAge
...
* | | | | | "All_files" is no longer necessary (ref: cl/190878279)Gravatar Mark Daoust2018-08-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `layers` subclassing instructions are out of date. PiperOrigin-RevId: 207802618
* | | | | | [XLA] Delete the xla_builder in xla_client.Gravatar A. Unique TensorFlower2018-08-07
| | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 207792582
* | | | | | Remove usage of magic-api-link syntax from docs.Gravatar Mark Daoust2018-08-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Back-ticks are now converted to links in the api_docs generator. With the new docs repo we're moving to simplify the docs pipeline, and make everything more readable. By doing this we no longer get test failures for symbols that don't exist (`tf.does_not_exist` will not get a link). There is also no way to set custom link text now. That's okay. This is the result of the following regex replacement (+ a couple of manual edits.): re: @\{([^$].*?)(\$.+?)?} sub: `\1` Which does the following replacements: "@{tf.symbol}" --> "`tf.symbol`" "@{tf.symbol$link_text}" --> "`tf.symbol`" PiperOrigin-RevId: 207780049
* | | | | | [Docs]: Reduce over-estimation while measuring compute time.Gravatar Asim Shankar2018-08-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Inspired by: https://stackoverflow.com/questions/51717817/performance-measurement-in-tensorflows-eager-mode PiperOrigin-RevId: 207752918
| * | | | | Fix incorrect to version compatibilityGravatar Yong Tang2018-08-07
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fix tries to address the issue raised in 21434 where the link to version compatibility is not correct. The link should be `version_compat.md`, not `version_semantics.md`. This fix fixes 21434. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
| | | * | Add shell prompt ("$") to commandGravatar Justin Shenk2018-08-07
| | | | |
| | | * | Fix spacingGravatar Justin Shenk2018-08-07
| | | | | | | | | | | | | | | Remove extra space
| | | * | Fix markdown formatting by removing indentGravatar Justin Shenk2018-08-07
| |_|/ / |/| | | | | | | | | | | | | | | Previous display: <pre> $ <b>pip3 install tensorflow</b> # Python 3.n $ <b>pip install tensorflow</b> # Python 2.7</pre>
* | | | internal changeGravatar Mark Daoust2018-08-06
| | | | | | | | | | | | | | | | PiperOrigin-RevId: 207611658
* | | | [XLA:CPU] Migrate aot/runtine.{h,cc} to xla_compiled_cpu_function.{h,cc}Gravatar Sanjoy Das2018-08-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As a follow-on cleanup for cl/206980796 ("Overhaul XLA:CPU's calling convention.") I want to introduce a BufferInfo class that encapsulates whether a buffer is a constant, an entry parameter or a temp without using the fragile "size < 0" scheme I have today. To do this efficiently I need a place to put the BufferInfo class that will be visible to MallocContiguousBuffers. Instead of creating (what seemed to me) an odd layering with BufferInfo in aot/runtime.h I decided to pull in the runtime into xla_compiled_cpu_function since that's the only user. PiperOrigin-RevId: 207333245
* | | | Merge pull request #21282 from av8ramit:merge_r110_backGravatar TensorFlower Gardener2018-08-03
|\ \ \ \ | | | | | | | | | | | | | | | PiperOrigin-RevId: 207329479
| | | * \ Merge branch 'master' of https://github.com/tensorflow/tensorflowGravatar Madiyar Aitbayev2018-08-03
| | | |\ \ | |_|_|/ / |/| | | |
* | | | | [XLA] Introduce variadic version of reduce.Gravatar Michael Kuperstein2018-08-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This defines the semantics, and adds parser and shape inference support. Since support is not plumbed through the rest of the compiler here, multi-output reduce is still rejected by the HLO verifier, and is not exposed through XlaBuilder. PiperOrigin-RevId: 207148035
* | | | | Merge pull request #21288 from sfujiwara:fix-custom-estimator-guideGravatar TensorFlower Gardener2018-08-02
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 207129109
* | | | | | [XLA] Add Scatter HLO.Gravatar A. Unique TensorFlower2018-08-01
| | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 207045468
* | | | | | Fix some outdated documentation.Gravatar Sanjoy Das2018-08-01
| | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 206955285
| | * | | | Fixing some merge conflicts I missed.Gravatar Amit Patankar2018-07-31
| | | | | |
| * | | | | fix the function name in the gide of custom estimatorGravatar sfujiwara2018-08-01
|/ / / / /
| * / / / Merging the r1.10 branch back to master.Gravatar Amit Patankar2018-07-31
|/ / / /
* | | | Typo fix.Gravatar Mark Daoust2018-07-30
| | | | | | | | | | | | | | | | PiperOrigin-RevId: 206599792
* | | | Adding NodeDef names to error messages for better debuggability.Gravatar A. Unique TensorFlower2018-07-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The format used is as follows: {{node <node_name>}} PiperOrigin-RevId: 206370355
| | | * Use correct hash_bucket_size parameterGravatar Matt Dodge2018-07-27
| |_|/ |/| | | | | `s/hash_buckets_size/hash_bucket_size/` since that is the correct argument spelling for the Python method.
* | | [XLA] Update xla document. The xla_builder and xla_computation have been ↵Gravatar A. Unique TensorFlower2018-07-25
| | | | | | | | | | | | | | | | | | moved to client/. PiperOrigin-RevId: 206110380
* | | [XLA] The first step to incrementally move client/xla_client/* to client/.Gravatar A. Unique TensorFlower2018-07-25
| | | | | | | | | | | | PiperOrigin-RevId: 206105815
* | | [XLA] Fix up table formatting in Map semantics.Gravatar Michael Kuperstein2018-07-24
| | | | | | | | | | | | PiperOrigin-RevId: 205912552
* | | Setup for TFLite subsiteGravatar Billy Lamberta2018-07-24
| | | | | | | | | | | | PiperOrigin-RevId: 205866236
* | | Fix linkGravatar Billy Lamberta2018-07-24
| | | | | | | | | | | | PiperOrigin-RevId: 205862584
* | | [XLA] Document DynamicSlice and DynamicUpdateSlice semantics.Gravatar Michael Kuperstein2018-07-24
| | | | | | | | | | | | PiperOrigin-RevId: 205858924
* | | Update example execution of configure script for installation from sourcesGravatar Smit Hinsu2018-07-23
| | | | | | | | | | | | PiperOrigin-RevId: 205754672
* | | Merge pull request #20508 from henry860916:masterGravatar TensorFlower Gardener2018-07-20
|\ \ \ | | | | | | | | | | | | PiperOrigin-RevId: 205459707
* | | | Start implementation of Iota HLO.Gravatar Nick Desaulniers2018-07-20
| | | | | | | | | | | | | | | | PiperOrigin-RevId: 205447892
* | | | Merge pull request #20965 from vilmar-hillow:masterGravatar TensorFlower Gardener2018-07-20
|\ \ \ \ | | | | | | | | | | | | | | | PiperOrigin-RevId: 205436063
* | | | | Add CSS style sheet to preprocessed documentation and landing pages.Gravatar Billy Lamberta2018-07-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove first button from rendered notebooks (already on page). Quarantine the home page a bit. PiperOrigin-RevId: 205413200
* | | | | Merge pull request #20957 from cheerss:masterGravatar TensorFlower Gardener2018-07-19
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 205338870
* \ \ \ \ \ Merge pull request #20710 from case540:merge_19_into_masterGravatar TensorFlower Gardener2018-07-19
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 205297211
* \ \ \ \ \ \ Merge pull request #20927 from wimglenn:no_sudoGravatar TensorFlower Gardener2018-07-19
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 205283751
* | | | | | | | eager guide: s/tfe.Checkpoint/tf.train.Checkpoint/Gravatar Asim Shankar2018-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 205248470
| * | | | | | | fix typo I added.Gravatar Mark Daoust2018-07-19
| | | | | | | |
| * | | | | | | Consistently use `--upgrade` instead of `-U`Gravatar Mark Daoust2018-07-19
| | | | | | | |
| | | | * | | | Typo in tf.Session fixedGravatar vilmar-hillow2018-07-19
| |_|_|/ / / / |/| | | | | |
| | | * | | | Update keras.mdGravatar cheerss2018-07-19
| | | | | | | | | | | | | | | | | | | | | tf.keras.models should load model configuration with `model_from_json` or `model_from_yaml`, not `from_json` or `from_yaml`
* | | | | | | Remove mentions of developer preview in TFLite docs.Gravatar Billy Lamberta2018-07-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 205117878
* | | | | | | Allows constructing resource variables from tf.Variable.Gravatar Alexandre Passos2018-07-18
| |_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also adds arguments to control distributed aggregation to the tf.Variable constructor. Removes tfe.Variable from examples as it's now unnecessary. PiperOrigin-RevId: 205096552
| * | | | | Recommend the user site, no sudoGravatar wim glenn2018-07-18
|/ / / / /
* | | | | Merge pull request #20877 from pmkalshetti:patch-1Gravatar TensorFlower Gardener2018-07-17
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 205009225
* | | | | | Fix sanity failure from cl/204944404Gravatar Yifei Feng2018-07-17
| | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 204953899
| * | | | | correct urlGravatar Pratik Kalshetti2018-07-17
|/ / / / / | | | | | | | | | | correct broken url for 1) Eager Execution
* | | | | apt-get install NVIDIA libsGravatar Toby Boyd2018-07-16
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 204823373
* | | | | Add NCCL 2.x to install_sources.mdGravatar Toby Boyd2018-07-16
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 204816895
* | | | | Add autograph.ipynb to guideGravatar Mark Daoust2018-07-16
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 204794405