Dangyi Liu
Dangyi Liu
Use "something_css_sprite@2x" instead of "something_css_sprite"
In [kazoo/recipe/watchers.py](https://github.com/python-zk/kazoo/blob/8a28d0f5eff5b9b09aebe8c569b3b1abce686d48/kazoo/recipe/watchers.py#L163) line 163. ```python try: result = self._func(data, stat, event) except TypeError: result = self._func(data, stat) ``` It's too terrible since a lot of error could raise a TypeError....
  I use spf13-vim. It shows strange codes after I open a file.
nnx.remat needs to be applied to (unbound) functions, but it's easy to apply it to a bound method, e.g. ``` class Model(nnx.Module): def __init__(self, *, rngs: nnx.Rngs): self.linear = nnx.Linear(16,...
In the development of a quantization library, we often need to collect some statistics of activations. Sometimes, the collection happens inside a custom_vjp function, as demonstrated below. ```py class QuantStats(nnx.Variable):...