Rasmus Bonnevie

Results 6 comments of Rasmus Bonnevie

@dustinvtran Ah, did see DICE when it came out, and I looked it over again this friday hoping that it would solve my problem in an instant, but I think...

That's a slightly dense implementation, might need a few pointers. Is the idea to have the surrogate_loss do an implicit `stop_gradient` by swapping in the probability calculated using `x.value` instead...

Thanks for the pointer! From this: ``` for model_trace, guide_trace in self._get_traces(model, guide, *args, **kwargs): elbo_particle = _compute_dice_elbo(model_trace, guide_trace) if is_identically_zero(elbo_particle): continue elbo += elbo_particle.item() / self.num_particles ``` it would...

@alicederyn did you find a way to forward arguments/options? Trying to solve the same problem, and I was originally thinking I could just do something like ```python def forwarder(name: str,...

Just upgraded to the version with chart view, and it's very cool and nice to be able to see comparisons side by side now :) A bit of feedback: More...

Yeah, it's not super obvious. I borrowed the trick from [here](https://cmaddis.github.io/gumbel-machinery), but they don't demonstrate it either. But it's actually not too hard to show. Remember that an easy way...