Dangyi Liu

Results 8 issues of 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....

Enhancement

![screen shot 2015-02-25 at 4 10 22 pm](https://cloud.githubusercontent.com/assets/1825485/6367051/f85c9758-bd08-11e4-99b6-05ade2794a4c.png) ![screen shot 2015-02-25 at 4 17 35 pm](https://cloud.githubusercontent.com/assets/1825485/6367110/e4f3471a-bd09-11e4-8556-05c385ef32ed.png) 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):...

needs-discussion