aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/go/README.md
Commit message (Collapse)AuthorAge
* Update links to install pages.Gravatar Billy Lamberta2018-09-20
| | | | PiperOrigin-RevId: 213917946
* Update readme with working bazel config flagGravatar Miguel Mota2018-07-21
|
* Update README.mdGravatar Sagi2018-04-24
| | | | | Awesome and details doc! But I wouldn't call it an "awkward" package path :)
* Fix Golang readme installation instruction formattingGravatar Aiden Scandella2017-12-20
| | | | This looks like it got pasted in incorrectly
* Fix broken link in `tensorflow/go/README.md`Gravatar Yong Tang2017-08-09
| | | | | | | | Fix broken link in `tensorflow/go/README.md`. This is related to #12145 (`tensorflow/java/README.md`) but is in go's README.md Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* Simplify the Quickstart section with the weblink is betterGravatar superryanguo2017-06-22
|
* Add the shared libraries in the quickstartGravatar superryanguo2017-06-20
|
* Docs: Stop advertising GPU support for Mac OS X.Gravatar Asim Shankar2017-05-04
| | | | | | | | | | Starting with the next release (1.2) GPU support for Mac will be dropped in release binaries since the configuration of NVIDIA GPUs on a Mac is somewhat esoteric (and we currently do not have the bandwidth to debug test failures on that platform). While at it, change to version 1.1.0 from 1.1.0-rc2 Change: 155117808
* Merge changes from github.Gravatar Dandelion Mané2017-03-10
| | | | Change: 149800363
* Go/Java: Update links following the 1.0 release.Gravatar Asim Shankar2017-02-15
| | | | Change: 147636817
* Java: Use pre-built binaries to speed up getting started.Gravatar Asim Shankar2017-02-14
| | | | Change: 147452567
* Go: Simplify installation.Gravatar Asim Shankar2017-02-07
| | | | | | | Utilize the TensorFlow C library release archive to avoid building TensorFlow from source to get going much faster when using Linux/Mac OS X on x86_64. Change: 146805287
* Go: Check in generated code for ops.Gravatar Asim Shankar2017-02-04
| | | | Change: 146572093
* Go: Remove reference to closed issue from READMEGravatar Asim Shankar2016-11-28
| | | | Change: 140383852
* Enable alpha testing at top-level WebGlRenderer (callsGravatar Charles Nicholson2016-10-31
| | | | | | | glEnable(GL_ALPHA_TEST)). Disable premultiplied alpha for now, we don't have any translucent texture reads yet. Replace dynamic branching + discard in sprite fragment shader's analytical circle rendering, do a simple lerp instead. Simplify picking fragment shader as well, return the opacity in the alpha channel instead of discarding. Change: 137707296
* go: Scaffolding for a package containing wrapper functions for TensorFlow ops.Gravatar Asim Shankar2016-10-10
| | | | | | | | | | | | | | | | | | | | | | This includes: (1) A 'genop' command-line tool that generates Go functions for each TensorFlow op registered in the address space of the process. (2) An 'op' package that will host these generated functions and some hand-crafted functions (like Const). At this time, none of the generated files are being committed. As a result, the installation instructions in README.md have been updated to reflect how 'go generate' should be used to setup the 'op' package. Note that even after this change, packages that clients are expected to use ('tensorflow' and 'op') do not depend on protocol buffers (github.com/golang/protobuf). However, the stand-alone command-line tool 'genop' does. This change is focused on the scaffolding and introduces a dummy code generator. The real implementation of the code generator will be done in a follow up change as I wanted to separate these "mechanics" from the "implementation details". Yet another step for #10 Change: 135735176
* go: Add a README.md with installation instructions.Gravatar Asim Shankar2016-10-04
The Go API is still decidedly an "alpha version" and the installation process would ideally be much smoother. But the instructions included here are at least functional. Another step towards #10 Change: 135166392