Neil Girdhar

Results 85 issues of Neil Girdhar

https://en.wikipedia.org/wiki/Wishart_distribution https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.wishart.html#scipy.stats.wishart

https://en.wikipedia.org/wiki/Inverse_Gaussian_distribution https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.wald.html#scipy.stats.wald

Is it possible to have indentation like in https://github.com/Gbps/fastlog?

```python from jax import jit from jax.lax import scan from tjax import IntegralNumeric, RealNumeric from tjax.dataclasses import dataclass, field import chex def f(carry, _): return carry + 1.0, None @jit...

The Style Guide for Python Code, PEP 8, says: Almost without exception, class names use the CapWords convention. Classes for internal use have a leading underscore in addition.

## Standards checklist: - [x] The PR title is descriptive. - [x] The PR doesn't replicate another PR which is already open. - [x] I have read the contribution guide...

Area: plugin
Topic: alias
Type: documentation

Given code like: ```python mm = jax.tree_map(lambda x, y: x + y, f, f) ``` Consider having a pylint rule that suggests replacing it with: ```python mm = jax.tree_map(operator.add, f,...

Enhancement ✨
Needs PR

It could be something like: ```python P = ParamSpec('P') class classmethod(Generic[P, _R_co]): @property def __func__(self) -> Callable[P, _R_co]: ... @property def __isabstractmethod__(self) -> bool: ... def __init__(self: classmethod[_R_co], __f: Callable[P,...

deferred