IlyaOrson's comments

IlyaOrson | 1 year ago | on: The Kicked Rotor – A Chaotic Playground

This simple mechanical system was one of my first coding projects when learning about physics simulations. It's basically a frictionless, gravity-free rigid pendulum that gets periodic kicks of fixed strength and direction. The phase space shows interesting patterns that are observed in multiple applications of chaos theory.

Would love to hear your thoughts and feedback, hope you like it!

PS I'm honestly blown away by how smooth is making webapps these days thanks to LLMs helping with all the web stack.

IlyaOrson | 4 years ago | on: Composability in Julia: Implementing Deep Equilibrium Models via Neural ODEs

That actual content of that work was good but very misleading with an excess of backpropaganda and a poor literature review. The training procedure makes sense as continuous time backprop but it is mostly a special case of adjoint sensitivity analysis. The use of a NN as defining an ODE system seems fair to be named Neural ODE, imho its a good name, although again it was not completely novel as the writing style through the paper makes it look.

IlyaOrson | 4 years ago | on: Julia 1.6 addresses latency issues

This kind of comment just enforces the defensive perception towards the community. He clearly stated that it was just his opinion. Why not just point out that "common tasks" always refers to each own's bubble?

There is no need to insult people around.

IlyaOrson | 5 years ago | on: Rust 1.46

If the dev cycle feels slow in julia, you can make it snappier with a tool like Revise.jl, it is quite handy.

If you just need to fill a small and slow gap maybe something like numba is also a good option to stay within python.

Going all the way to a low level language would require the compilation, the glue code and expertise in both languages. Probably that slows down the development pipeline more than the JIT compilation from julia or numba.

Anyway, any opportunity to learn/practice some rust is also great!

IlyaOrson | 5 years ago | on: Rust 1.46

Julia might be a better fit for this use case.

That way you leverage a more developed data ecosystem, can call python when necessary and avoid writing low level code.

Depends on the task of course.

page 1