[julia-users] Re: Anyone working on Julia wrappers for TensorFlow?

2016-05-25 Thread James Dang
The Python API is far more useful than C++. I've really had no difficulty using it via PyCall for Julia. You just write using PyCall @pyimport tensorflow as TF to import the whole library, and code such as TF.placeholder("float32") TF.train[:GradientDescentOptimizer](α)[:minimize](loss) to inv

Re: [julia-users] Announcing JuDE: autocomplete and jump to definition support for Atom

2016-03-27 Thread James Dang
Hi David, I think Jude's functionality is pretty orthogonal to julia-client so they function pretty well as distinct, easier to manage packages. julia-client is focused on live code execution and results visualization while Jude is more about getting traditional IDE tools via static syntax anal

Re: [julia-users] Re: Announcing JuDE: autocomplete and jump to definition support for Atom

2016-03-23 Thread James Dang
of PRs to Atom and autocomplete-plus that will help us fix this. In > future, there's no reason not to expect both julia-client and Jude > autocompletions to be available there. > > On Tue, 22 Mar 2016 at 05:17 James Dang wrote: > >> Hi Evan, no, the console is controll

[julia-users] Re: Announcing JuDE: autocomplete and jump to definition support for Atom

2016-03-21 Thread James Dang
Hi Evan, no, the console is controlled by Juno (or "julia-client" in Atom), and Jude can't hook into that. Besides, Jude is complementary and distinct from what Juno provides. Jude does auto-complete within scopes, so you can get autocomplete in the middle of a function body you are editing, whi

[julia-users] Re: Announcing JuDE: autocomplete and jump to definition support for Atom

2016-03-21 Thread James Dang
Hi Nitin, yeah I haven't set up a way to configure which Julia binary to run, so it just expects `julia` on your path. That will be fixed up soon. Another user who used homebrew found a workaround: https://github.com/jamesdanged/Jude/issues/1

[julia-users] Re: Announcing JuDE: autocomplete and jump to definition support for Atom

2016-03-20 Thread James Dang
Thanks! I think it's the default Atom theme heh.

[julia-users] Announcing JuDE: autocomplete and jump to definition support for Atom

2016-03-20 Thread James Dang
Hi All, Julia has been great for me, and I wanted to give back a little. LightTable and Atom are great editors, but I was really starting to miss good intellisense-like autocomplete and basic navigation features like jump-to-definition, especially on larger codebases. It's really quite a slog t

[julia-users] generating functions with varying number of args

2014-12-04 Thread James Dang
Hi All, I've been writing my own functors similar to the NumericExtensions package, and I've been able to get very good performance while also encapsulating my SIMD loops. My problem is that I had to copy paste code over and over to handle the different situations where my functor takes 1 arg,

[julia-users] Re: Text editor for coding Julia: Atom vs Light Table vs Bracket

2014-12-04 Thread James Dang
I've been working quite productively with LightTable, as I specifically need to interact with my data. It even allows interactive plotting using PyPlot with the ability to show the plots in a separate window or inline.

[julia-users] Re: pyplot doesn't display anything, how do I choose the right backend

2014-12-04 Thread James Dang
If you use it with IPython Notebook or with Lighttable, it should pretty much work out of the box I think.