Mike J Innes
Mike J Innes
Apologies for not being particularly responsive on this – is there any chance someone could send a PR that brings things up to date? It should just be a case...
Ha yeah, don't worry about re-indenting everything :)
This package is deprecated because the Markdown module is now in Base. The error is pretty weird but it's not really worth worrying about for an old, archived module. Also,...
Tables aren't part of the commonmark spec, but they could certainly be added to the GitHub flavour. If you need tables immediately I suggest adding a four-space indent to preserve...
This is definitely on the roadmap – the only slight issue is the clash with interpolation syntax (`$(...)`), but that should be easily resolved.
Yes, this is mentioned in the readme; you can call `Zygote.refresh()` to avoid it.
So the idea is that we call `refresh()` at the entry point of `gradient`? And then that can call `eval`/`invokelatest` on `_forward` to get the latest definition. It seems hard...
> I assume you mean _if the methods called are not known at compile time. Since the functions always are ... Slightly contrived, but for example: ```julia function foo(fs) f...
`literal_getproperty` is just a hack; we need constant propagation to work so that something like `getproperty(1+2im, :re)` can be type inferred, but it tends to give up after Zygote has...
The issue is that those adjoints don't apply when you multiply arrays of `M` together. So we end up multiplying adjoints of `M` with `M` there. If `M` is a...