Chad Scherrer
Chad Scherrer
Really enjoying this package, thank you for your work on it. For Soss.jl, here's a simple model: ```julia m = @model begin x ~ Normal(0,1) y ~ Normal(x^2, 1) |>...
Weave is pretty great for quickly writing notes to go into a Github repo. Unfortunately, Github has decided not to support LaTeX of any sort. Can Weave render math environments...
It seems desirable for `format` to be "idempotent" - that is, calling it twice should be no different than calling it once. I found a strange example where this is...
Hi, thanks for this great package! I'm seeing some strange behavior with broadcasting. It's easy enough to work around, but still seems worth noting: ```julia julia> (zeros(3) .± 1) .±...
Below might be a common problem with people new to pattern matching (or rusty with it like me, apparently). It would be really nice to have a clear error message...
This is not specific to MLStyle, but if you have time I hope you might be able to help. There's a sort of "design pattern" I see you using that...
FYI, lots of broken examples in the docs: https://symbolicutils.juliasymbolics.org/rewrite/
Lambda terms
Hi, There are currently a couple of ways to represent functions: 1. For Julia functions, all we can do is evaluate them. In particular, we don't know much about types,...
Hi, I just saw you're using FunctionWrappers. I've wanted to use this in the past, but held back because it seems to have lots of overhead. A few weeks ago...