Questions tagged [julia]

For questions regarding the Julia Programming language

Julia is a programming language designed for scientific computing.

It has an LLVM based JIT compiler which helps it deliver fast performance for technical computation.

The complete documentation is available here.

16 questions
13
votes
5 answers

Best Julia library for neural networks

I have been using this library for basic neural network construction and analysis. However, it does not have support for building multi-layered neural networks, etc. So, I would like to know of any nice libraries for doing advanced neural networks…
Dawny33
  • 8,476
  • 12
  • 49
  • 106
6
votes
0 answers

Julia programming language

I've heard a lot of buzz for Julia programming language and how it's the future of AI. Should I buy into the hype and start learning Julia? Or do you think its better to stick to a better established language (e.g. python). What are the pros and…
Jerome
  • 346
  • 1
  • 3
5
votes
2 answers

Does anyone use Julia programming language?

Is anyone using Julia (http://julialang.org/) for professional jobs? Or using it instead of R, Matlab, or Mathematica? Is it a good language? If you have to predict next 5-10 years: Do you think it grow up enough to became such a standard in data…
Raffaello
  • 187
  • 4
4
votes
1 answer

Gradient Check is failing for RNN

I am trying out POS tagging using RNN but not able to figure out what's wrong in my implementation because of which the gradient check is failing. Please help. I am pasting the relevant part below: # weights Wxh = randn(inputLayerSize,…
lex
  • 223
  • 1
  • 5
3
votes
1 answer

Neural network for MNIST: very low accuracy

I am working on solving the handwritten digit recognition problem by implementing a neural network. But the accuracy of the network is coming out to be very low, around 11% for the train dataset. I am not sure what is wrong with my program. I tried…
lex
  • 223
  • 1
  • 5
1
vote
1 answer

How to limit a Julia notebook to a single core?

I'm running a Julia 1.4 notebook, via Jupyter lab. I need to limit the notebook to a single logical CPU core, on average. In Python I use the following incantation to restrict Numpy's CPU usage: from threadpoolctl import…
MRule
  • 121
  • 3
1
vote
1 answer

Do I load all files at once or one at a time?

I currently have $1700+$ CSV files. Each of them is in the same format and structure, give or take a row or possibly a column at the end. Each CSV is $\approx 3.8$ MB. I need to perform a transformation on each file Extract one data set, perform a…
1
vote
0 answers

Julia - Identity matrix - eye() alternative

I'm working with what I guess is an older textbook that is using an older version of Julia as they are using the eye() function to create an identity matrix, which appears to not exist in the version I am currently using. What alternative is there…
1
vote
0 answers

Is there a gradient descent-based optimization algorithm that works with non-linear constraints?

I have a function to optimize with ca. 200 parameters + one constraint (sum of squares of the parameters must be equal one) This problem can be solved using Lagrange Multipliers and my intuition tells me, that methods that do that must be readily…
1
vote
1 answer

What should I master better for professional data science in economics and finance?

First, excuse me for the noob and long question which is probably doesn’t even belong to here, I know there are several question been answered like this out there, but I think this is going to be up-to-date. Stack Overflow deleted my question and…
1
vote
1 answer

Is there any way to collect categorical features quickly in Julia DataFrames?

I'm using Julia 0.6.3 with Dataframes.jl I was wondering if there was any way to get categorial features easily in Julia? For large datasets it can be impossible to enter everything by hand. My workaround is to rely on strings and usually low…
Nathan Furnal
  • 275
  • 1
  • 3
  • 10
1
vote
0 answers

Checking MixedModel convergence in Julia

I'm trying to teach myself how to use Julia as an alternative to R, and was running into some trouble with checking convergence of a MixedModel object. In R, if I use the following code library(lme4) library(lmerTest) lmer( y ~ x1 * x2 + (1 |…
Vincent
  • 11
  • 1
1
vote
1 answer

Looking for a clustering algorithm for highly noisy data

I am trying to find clusters in some data with high noise (see plot below, data here). I tried using DBSCAN which sort of worked, but it required quite a bit of manually tuning the input parameters to find the clusters properly. Are there any other…
Ewout
  • 11
  • 1
0
votes
1 answer

Julia - To Learn or Not to Learn?

I'm relatively new to data science, having done some machine learning projects at work. My background is in R, although I have some experience in Python. I'm considering choosing one language and getting really good at using it for data science /…
bradS
  • 1,695
  • 9
  • 20
0
votes
0 answers

Programming language for faster MCMC (faster than Python/Julia/Rust)

I am looking for a programming language to accelerate performance of my Markov Chain Monte Carlo code. The code is written in Python and does not use any special MCMC libraries (like PyMC or Stan) - what I need is basically: sampling random numbers…
Roger V.
  • 119
  • 6
1
2