(no title)
datanecdote | 5 years ago
Are there any comprehensive benchmarks that show Julia outperforming Pandas or PyTorch or SciKit?
Obviously pure Python is terrible. But the library algorithms written in C seem fairly competitive.
I’m a fairly boring user who doesn’t do new science, and is fine just composing existing boring algorithms to solve problems in my subject matter domain.
wodenokoto|5 years ago
To my knowledge if you stick to things that calls optimized C and fortran code, it's a draw between the compiled code and Julia.
But even boring problems ends up doing things that are easily expressed in a loop, but ends up being a hard to read chain of pandas.
datanecdote|5 years ago
I agree that Julia code is aesthetically superior to a long chain of Pandas code. But at this point I’m used to reading a bunch of chained pandas code. Often I think of myself as more of a Pandas programmer than a Python programmer.