anand jain

Results 109 issues of anand jain

```julia # ==(::sol, ::sol) stackoverflow MWE using DifferentialEquations A = [2 -5; 1 -2] function f(u, p, t) A*u end function f2!(du, u, p, t) du .= A*u end function...

This is possibly a duplicate of #882 but I'm not sure. Below is a MWE. ```julia using PyCall py""" def f(x): return 2*x """ f(x) = py"f($x)" args = 1:100...

I mentioned this to Sebastian in slack a while ago and there was a reason this doesn't work, but I forget what it was and it keeps frustrating me. I...

When running this [DiffRL Trebuchet Example](https://github.com/FluxML/model-zoo/blob/master/games/differentiable-programming/trebuchet/DiffRL.jl) The callback only returns 0, I have to imagine that the model has not learned perfectly. ``` $ julia treb_diffrl.jl meanloss() = 0.0 (tracked)...

something like: ```julia @variables t D = Differential(t) z = t julia> expand_integral(∫(z)) 0.5(t^2) or 1//2(t^2) ``` also a question is handling the new constant, should you define a new...

I'm guessing this is really a julia issue. However, I can't reproduce it with a REPL, just vscode, hence issuing here. I also wasn't able to reproduce with 1.8-beta1. I...

I haven't really read through this repo, but I didn't see an easy way to take `@rule ~x => exp(~x)` to `@rule exp(~x) => ~x`. This was the hack I...

I was trying to understand how noise is being applied when `length(noiseeqs) != length(eqs)` and came across this crash. It doesn't say where to report the issue though. ```julia (SDEMWE)...

Fairly certain it is unrelated to #1402. This is almost definitely a julia bug, but opening one here so that its known. I'll also open a real issue in julia...