TensorFlow.jl icon indicating copy to clipboard operation
TensorFlow.jl copied to clipboard

A Julia wrapper for the TensorFlow Python library

Results 5 TensorFlow.jl issues
Sort by recently updated
recently updated
newest added

Minor change to import path for `rnn_cell`. Not backwards compatible with versions below 0.9.

Hey there, I'm trying to name my variables so that it is easier to save/restore/inspect them from the Julia side of things, and I noticed that the `Variable()` constructor doesn't...

In [polymorphism.jl](https://github.com/benmoran/TensorFlow.jl/blob/master/examples/polymorphism.jl#L47), should the following code: ``` julia for i in 1:batch_size y_one_hot[y, i] = 1. end ``` instead be: ``` julia for i in 1:batch_size y_one_hot[y[i], i] = 1....

[Tensorflow 0.8](http://googleresearch.blogspot.com/2016/04/announcing-tensorflow-08-now-with.html) has distributed training (among other things). Might as well stay up to date. What's involved in updating to a new version?

I've started adapting @ericjang's draw.py to the Julia wrapper, but it is incomplete and won't work yet.