[julia-users] Re: Juno stopped working - error message

2015-11-01 Thread Andre P.
Hi all. I upgraded to 0.4.0 and basically lighttables + Jewel stopped working. The errors are pretty mucb as above. - WARNING: LightTable.jl: cannot resize array with shared data in push! at /Applications/Julia-0.4.0.app/Contents/Resources/julia/lib/julia/sys.dylib in

[julia-users] Re: [ANN] UnicodePlots.jl v0.1.1

2015-11-01 Thread Weijian Zhang
Looks good! I will have a try. Here is link to the package if anyone is wondering: https://github.com/Evizero/UnicodePlots.jl Best, Weijian On Sunday, 1 November 2015 09:35:56 UTC, Christof Stocker wrote: > > UnicodePlots.jl is a package for text-based plotting. It is designed for >

Re: [julia-users] Re: Julia and Spark

2015-11-01 Thread Sisyphuss
http://dl.acm.org/citation.cfm?id=2228301 On Saturday, October 31, 2015 at 5:18:01 PM UTC+1, Jey Kottalam wrote: > > Could you please define "streams of RDDs"? > > On Sat, Oct 31, 2015 at 12:59 AM, > wrote: > >> Is there any implementation with streams of RDDs for Julia

[julia-users] [ANN] Word2Vec.jl, a Julia interface to word2vec

2015-11-01 Thread Weijian Zhang
Hello, We just registered Word2Vec.jl v0.0.1 (https://github.com/weijianzhang/Word2Vec.jl), a Julia interface to word2vec. It takes a text corpus as input and produces the word vectors as output. You can see a IJulia notebook demo at:

[julia-users] Re: Problem with (lib)fontconfig

2015-11-01 Thread digxx
Thanks for your reply. Unfortunately I have no experience with linux/unix (and objectoriented programming) So: I dont quite understand what libfontconfig is...? Is it just some allocating path or really some intrinsic programming thing and therefore would require complete rewriting of the

[julia-users] Re: [ANN] Word2Vec.jl, a Julia interface to word2vec

2015-11-01 Thread Sergey Bartunov
There is also our package for an extension of word2vec - https://github.com/sbos/AdaGram.jl which has almost the same speed and functionality as original word2vec and may additionally learn vectors corresponding to different meanings of a word. воскресенье, 1 ноября 2015 г., 12:10:28 UTC+3

[julia-users] Re: how to restore a variable to its default value?

2015-11-01 Thread Kuan Xu
I have the same question harven asked - how to reset pi to its factory value if it was overwritten? It seems that nobody answered his questions and I didn't any other threads discussing this. So bump this. On Sunday, October 27, 2013 at 4:44:17 PM UTC, harven wrote: > > I sometimes make the

Re: [julia-users] Re: Julia and Spark

2015-11-01 Thread ssarkarayushnetdev
Yes. On Sunday, November 1, 2015 at 9:34:26 AM UTC-8, Jey Kottalam wrote: > > Are you asking about Spark Streaming support? > > On Sun, Nov 1, 2015 at 4:42 AM, Sisyphuss > wrote: > >> http://dl.acm.org/citation.cfm?id=2228301 >> >> On Saturday, October 31, 2015 at 5:18:01

[julia-users] Re: how to restore a variable to its default value?

2015-11-01 Thread Kuan Xu
Thanks Cedric. It works now for me. K On Sunday, November 1, 2015 at 6:12:16 PM UTC, Cedric St-Jean wrote: > > Ivar's solution worked for me. > > pi = Base.pi > > > On Sunday, November 1, 2015 at 12:48:23 PM UTC-5, Kuan Xu wrote: >> >> I have the same question harven asked - how to reset pi to

[julia-users] ANN: NearestNeighbors.jl

2015-11-01 Thread Kristoffer Carlsson
Hello everyone, I took the last few days to finish a package I started many months ago. It is a package written in pure Julia for nearest neighbor searches in arbitrary dimensions by the use of either kd trees or ball trees (metric trees). The ball trees can use any metric and the kd trees can

[julia-users] Re: ANN: NearestNeighbors.jl

2015-11-01 Thread Dawid Crivelli
Well done, I've been trying also your package KDTrees.jl which is very useful to have! Is this going to be the backbone for a future fast-multipole-method code?

[julia-users] Distribute a Julia application without exposing the cose

2015-11-01 Thread Lee Bates
I'm trying to distribute an application written in Julia without exposing the code. I've tried using build_executable, however when using a Pkg interfacing with code written in another language (Tk, Cbc) the process seems to have errors I'm not capable of resolving. I've also thought of

Re: [julia-users] Re: Julia and Spark

2015-11-01 Thread Jey Kottalam
Are you asking about Spark Streaming support? On Sun, Nov 1, 2015 at 4:42 AM, Sisyphuss wrote: > http://dl.acm.org/citation.cfm?id=2228301 > > On Saturday, October 31, 2015 at 5:18:01 PM UTC+1, Jey Kottalam wrote: >> >> Could you please define "streams of RDDs"? >> >> On

[julia-users] Re: Problem with (lib)fontconfig

2015-11-01 Thread Tony Kelman
http://www.freedesktop.org/wiki/Software/fontconfig/ What are you trying to use the Fontconfig.jl Julia package for? That Julia package can't do anything if the underlying C library isn't available. On Sunday, November 1, 2015 at 5:22:10 AM UTC-8, digxx wrote: > > Thanks for your reply. >

[julia-users] Why does setting ENV["TZ"] in the REPL behave differently?

2015-11-01 Thread Josef Sachs
Works as expected with `julia -e`, but the environment variable does not seem to be respected when set in the REPL. Can someone explain the reason, and possibly provide a workaround? $ TZ=UTC julia -e 'println(now())' 2015-11-01T16:02:37 $ julia -e 'println(now())' 2015-11-01T11:02:42 $ julia -e

[julia-users] Re: [ANN] Word2Vec.jl, a Julia interface to word2vec

2015-11-01 Thread Weijian Zhang
The training is done using the original c code which uses threads to paralleize (splits the corpus into n parts and each thread process a part in parallel). The function word2vec in Word2Vec.jl allows you to change the number of threads. But there are rooms for improvement. I noticed a blog

[julia-users] Re: how to restore a variable to its default value?

2015-11-01 Thread Cedric St-Jean
Ivar's solution worked for me. pi = Base.pi On Sunday, November 1, 2015 at 12:48:23 PM UTC-5, Kuan Xu wrote: > > I have the same question harven asked - how to reset pi to its factory > value if it was overwritten? > > It seems that nobody answered his questions and I didn't any other threads

[julia-users] Re: Problem with (lib)fontconfig

2015-11-01 Thread digxx
I want to use Gadfly and apparently it's dependent on fontconfig. So I installed fontconfig and now when he tries to load fontconfig I get this error. So where/how would I store my C-library? Right now im installing cygwin but cant even get Julia installed...I opened a new thread for this

Re: [julia-users] Re: Deprecation warnings using julia on Atom

2015-11-01 Thread Colin Bowers
Hi Jeremy, This sounded promising, as at some point I did have IPython installed so I could use Jacob Quinn's Sublime-IJulia package. It is possible that something was left behind. However, unfortunately I haven't been able to find anything that looks suspicious (I'm on Ubuntu 14.04). For those

Re: [julia-users] IJulia not printing output

2015-11-01 Thread Yichao Yu
On Sun, Nov 1, 2015 at 7:25 PM, Simon Kornblith wrote: > I'm trying to figure out why IJulia appears to stopped working for me. It > executes code, but it never prints the output. It looks like the kernel is > trying to send it back, but for some reason it's not making it

[julia-users] Re: installing julia via cygwin

2015-11-01 Thread Seth
It sounds like you don't have '.' in your path. In cygwin, in your bin directory, type ./julia and see if that works. On Sunday, November 1, 2015 at 3:31:42 PM UTC-8, digxx wrote: > > Thank you. After hours of compilation it finally finished without errors. > Now I have the Julia.exe file in

[julia-users] question about Hessian in ForwardDiff return InexactError()

2015-11-01 Thread Tony Kelman
You probably need to initialize the destination array with a floating point, rather than integer, element type.

Re: [julia-users] IJulia not printing output

2015-11-01 Thread Simon Kornblith
Yes, I get normal output in a Python notebook. On Sunday, November 1, 2015 at 7:57:55 PM UTC-5, Yichao Yu wrote: > > On Sun, Nov 1, 2015 at 7:25 PM, Simon Kornblith > wrote: > > I'm trying to figure out why IJulia appears to stopped working for me. > It > > executes

[julia-users] question about Hessian in ForwardDiff return InexactError()

2015-11-01 Thread jamesmnason
Hi All: I am trying to compute a Hessian of a log likelihood function in a Metropolis-Hastings MCMC algorithm. The coefficient vector of the model has seven elements. A call to ForwardDiff.hessian(PF_RE_AR1_outer_alt, parms) returns ERROR: LoadError: InexactError() in

Re: [julia-users] Re: installing julia via cygwin

2015-11-01 Thread tony
I searched the log for the word error. The julia executable ends up at ./usr/bin/julia.exe, unlike a unix source build Windows doesn't support symbolic links very well so we do not create a ./julia convenience link. On Sun, Nov 1, 2015 at 6:15 PM -0800, "Seth"

[julia-users] Re: [help]: configuring Julia and Sublime text 2 on windows 8.1

2015-11-01 Thread John Wasa
Donald, I installed Julia 4.0 and Sublime-IJulia on Windows 7 (64bit). Sublime shows that Ijulia kernel is working, but none of the shortcut keys (shift+Enter, Ctrl+Enter, etc.) are working. Could you confirm that you also installed 64-bit Julia 4.0? (My Version is: 0.4.0 (2015-10-08 06:20

[julia-users] Re: Problem with (lib)fontconfig

2015-11-01 Thread Tony Kelman
As far as I can tell Fontconfig is an optional dependency. The C library can either be placed somewhere Julia can see it, or the Julia wrapper package can be adjusted to use an absolute path based on where it's obtaining the library from. On Sunday, November 1, 2015 at 9:23:52 AM UTC-8, digxx

[julia-users] Re: ANN: NearestNeighbors.jl

2015-11-01 Thread Kristoffer Carlsson
My plan is to deprecate KDTrees.jl in favor of NearestNeighbors.jl. The KDTree in NN.jl is slightly faster and uses slightly less memory so there isn't really any point to KDTrees.jl anymore. Also, the tree in KDTrees.jl can only use Euclidian distance while the one in NN.jl can use the more

[julia-users] Re: installing julia via cygwin

2015-11-01 Thread digxx
Thank you. After hours of compilation it finally finished without errors. Now I have the Julia.exe file in my bin folder but when trying to run it from there by typing Julia.exe or just Julia or -c Julia.exe it tells me: command not found? Btw: how did u see it was m4? I mean u didnt really read

[julia-users] IJulia not printing output

2015-11-01 Thread Simon Kornblith
I'm trying to figure out why IJulia appears to stopped working for me. It executes code, but it never prints the output. It looks like the kernel is trying to send it back, but for some reason it's not making it back to the client. With verbose = true, for a cell that contains println("hello

[julia-users] Re: [ANN] Word2Vec.jl, a Julia interface to word2vec

2015-11-01 Thread Viral Shah
Are either of these parallel? Any plans to parallelize? -viral On Sunday, November 1, 2015 at 6:21:52 PM UTC+5:30, Sergey Bartunov wrote: > > There is also our package for an extension of word2vec - > https://github.com/sbos/AdaGram.jl which has almost the same speed and > functionality as

[julia-users] Re: [ANN] Word2Vec.jl, a Julia interface to word2vec

2015-11-01 Thread Sergey Bartunov
AdaGram.jl is parallel via processes and SharedArrays. воскресенье, 1 ноября 2015 г., 17:55:14 UTC+3 пользователь Viral Shah написал: > > Are either of these parallel? Any plans to parallelize? > > -viral > > On Sunday, November 1, 2015 at 6:21:52 PM UTC+5:30, Sergey Bartunov wrote: >> >> There

[julia-users] Re: "using Gadfly" (using a package) only if needed

2015-11-01 Thread Felipe Jiménez
I found a way to include a "using" command inside a function without the Requires.jl package or needing to qualify the "new" package functions' names with a prefix. It is an easy way to achieve a "lazymode" effect. So I am sharing in case someone is interested. As example, inside the function

[julia-users] Re: installing julia via cygwin

2015-11-01 Thread Kristoffer Carlsson
Try ./Julia.exe

[julia-users] Re: installing julia via cygwin

2015-11-01 Thread digxx
Thank you. After hours of compilation it finally finished without errors. Now I have the Julia.exe file in my bin folder but when trying to run it from there by typing Julia.exe or just Julia or -c Julia.exe it tells me: command not found? Btw: how did u know it was m4? It didnt complain

[julia-users] Re: Deprecation warnings using julia on Atom

2015-11-01 Thread colintbowers
The problem magically fixed itself today. I was running a Pkg.checkout() on "Distributions" to move to the master branch there to get rid of deprecation warnings generated by qq.jl. In the process, I ran a Pkg.update(), and re-compiled other pre-compiled packages. Problem gone. At this stage