Tirth Patel
Tirth Patel
I think I can help complete this @dschmitz89! @mdhaber Do you prefer a new PR or should I do it here itself?
We can add the `_axis_nan_policy_factory` decorator to add `nan_policy` and `keepdims` arguments and support axis tuple (cc @mdhaber). I tried to add it locally and all the tests pass. Let...
> I am still unsure if this ought to be in stats or in a more general place. I am OK with this being in stats. If it were to...
@IMvision12 Thanks for raising the issue! One way you can promote this to KerasIO is adding a tutorial notebook on how to use KerasCV preprocessing layers and having links/screenshots to...
Having a demo like that would definitely be really helpful but KerasIO only supports adding notebooks/code examples. So, adding an interactive demo here would be a bit of an upward...
Thanks for the PR @innat! This is really great work! > * What does `kaggle_handle` mean? (A weight file or folder! If so, how [this config](https://github.com/keras-team/keras-cv/blob/9dd547a725c081db0264023717f43d14301ea3d2/keras_cv/models/backbones/efficientnet_v2/efficientnet_v2_backbone_presets.py#L17-L27) contains weight path!). How...
SciPy has a [usecase](https://github.com/scipy/scipy/blob/422ae7150123feb11b1deb83c6bad61ed3055251/scipy/stats/_axis_nan_policy.py#L196) for the `nextafter` function which is present in this list. Since it is a very basic function and implemented by all the array libraries, I think...
Thanks for the review and the clarifying comment @jpmckinney! I have made the changes you suggested. It would be great if someone with write access could approve and merge this!
> I think these [two lines](https://github.com/scipy/scipy/blame/main/scipy/stats/_distn_infrastructure.py#L3979-L3980) are the culprit and could be replaced with the faster and less memory hungry `np.searchsorted(self.qvals, q)` The `scipy.stats.sampling` module does something similar and is...
> `DiscreteGuideTable` suggested by Tirth is very efficient, but is not a replacement to the `rv_samle` class. `DiscreteGuideTable` lacks a lot of the methods you'd find on `rv_samle`, like `.mean()`....