Jesse Perla
Jesse Perla
The current interface for regular jumps is https://docs.juliadiffeq.org/latest/types/jump_types.html#Defining-a-Regular-Jump-1 where `c(dc,u,p,t,mark)` is the Stoichiometry matrix. If it simulates N jumps for a particular jump process, then it finds the jump sizes...
@torfjelde ```julia using Turing, Random @model function gdemo(xs) # Assumptions σ² ~ InverseGamma(2, 3) μ ~ Normal(0, √σ²) # Observations for i = 1:length(xs) xs[i] ~ Normal(μ, √σ²) end end...
Right now you need to manually setup auto-differentiation for functions which is more cumbersome than others (e.g. Optim or JuMP directly). Would you be willing to entertain a PR to...
See http://www.juliaopt.org/MathOptInterface.jl/dev/apireference/#MathOptInterface.ObjectiveSense The default should be `min_sense` and you might even want to only implement that in the first iteration, but you want to do the API for this correctly...
See https://github.com/SciML/GalacticOptim.jl/issues/130 as well.
@ChrisRackauckas and @mohamed82008 To summarize the conversation: just to verify here in case I can get an undergrad to help out. Are you saying that https://github.com/SciML/SciMLBase.jl/blob/5796b966ac13a6950dd956d7ff9ce5941ee5fc77/src/problems/basic_problems.jl#L96-L105 and the problem are...
While thinking about #8 and #148 in order to finalize the output structure, it is often very useful to know the gradient of the objective (and the constraint jacobian) at...
Switching between Optim and BBO it is a pain to manually change between `time_limit` and `MaxTime` for the solve options. Not everything should be made consistent, but that (and the...
A reminder to install: https://chrome.google.com/webstore/detail/github-with-mathjax/ioemnmodlmafdkllaclgeombjnmnbima My canonical example is the stationary problem with $d x_t = \mu dt + \sigma d W_t$, with a reflecting barrier at $x = 0$...
Right now, my understanding of the domains and the boundary values is that if the operators coincide in the domain, we can take just add in as many extra ghost...