Re: [julia-users] Re: Best practices for migrating 0.3 code to 0.4? (specifically constructors)

2015-03-14 Thread Ian Watson
I am seeing what looks like a similar problem trying to use PyPlot in version 0.4. When I issue 'using PyPlot', I get ERROR: LoadError: LoadError: LoadError: MethodError: `convert` has no method matching convert(::Type{Ptr{UInt8}}, ::ASCIIString) This may have arisen from a call to the construc

[julia-users] Julia Install in Heterogenous Linux Environment: Target architecture mismatch

2015-11-23 Thread Ian Watson
We have a Linux cluster that consists of different models of hardware. If I build Julia on one kind of hardware, say model name : Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz but then run that installation on another kind of hardware, say model name : Intel(R) Xeon(R) CPU E5-2670 0 @ 2.6

Re: [julia-users] Julia Install in Heterogenous Linux Environment: Target architecture mismatch

2015-11-23 Thread Ian Watson
Julia community works just great... Thanks! Ian On Monday, November 23, 2015 at 12:08:16 PM UTC-5, Yichao Yu wrote: > > On Mon, Nov 23, 2015 at 11:43 AM, Ian Watson > wrote: > > We have a Linux cluster that consists of different models of hardware. > > > > If I build Ju

[julia-users] Performance and Size problem with JLD saving DecisionTree model

2016-01-21 Thread Ian Watson
Using DecisionTree to build a random forest model. Small, 200 items, 664 predictors for each item, input file size under 1 MB I can build a random forest model with 1000 trees in about 8 seconds - great. @time model=build_forest(yvalues[:,1],features,2,1000,0.5) Then I tried to save that mode