Adrià Garriga-Alonso
Adrià Garriga-Alonso
In my experience, the biggest delay when using lists was map. The function would follow all the pointers from the linked list (not on cache, slow) and call push to...
Here's another possible improvement to the typing. Consider `tree_map`: ```py tree_map(Callable[..., U], tree: PyTree[T], ...) -> PyTree[U] ``` Type-checking: ```py a: int = 1 a = tree_map(lambda x: x+1, 1)...
Possibly the TransformerLens version you're using is different from the one that was used to save the hypothesis, so the hook names are different. What's the list of edges from...
Turns out the explanation is: the ACDC algorithm literally removes edges (i.e. removes them from the correspondence dictionaries), as opposed to saying `edge.present = False`. That makes it fail when...
Getting fixed in #70
I can't help you without a more detailed error message. I've tried to find a method to elicit one from the machine, but don't have any. Did you manage to...
Hi! > Yes, this is important. We'll routinely want to draw multiple samples from a mvn of given batch and event shape, so we pass in base samples with additional...
I've written a more extensive test and gotten it working. But it's many complicated moving parts for supporting a perhaps niche use case. Perhaps we should just disallow all `MultivariateNormal`s...
Sorry for not getting to this yet -- I am still happy to do it. I believe the remaining TODOs are: - [ ] use an `emptyDir` for the certificates...