Ryan Soklaski

Results 54 issues of Ryan Soklaski

My logged data is taking up too much space!

enhancement

Users should be able to set `nan` in their batch

enhancement

Abstract away the specific plotting backend (i.e. matplotlib) from `LivePlot`. Thus the current version of `LivePlot` would become `MatplotlibLivePlot`, and would retain the matplotlib-specific functionality. Otherwise `LivePlot` will serve as...

enhancement

The pattern used by #3396 to leverage `ParamSpec` https://github.com/HypothesisWorks/hypothesis/blob/0738717561e419558a831869ab2b81dd918276aa/hypothesis-python/src/hypothesis/strategies/_internal/core.py#L123-L129 does not actually work with the `typing_extensions` backport: ```python # contents of pspec.py from hypothesis.strategies import composite, DrawFn from typing_extensions import...

bug
tests/build/CI
legibility

While working on a tutorial for pycon, I found that a substantial part of my materials was simply explaining what the various strategies do... which is what docstrings are for,...

enhancement
docs

This is going to be a somewhat sprawling issues. All of the topics here involve Hypothesis' approaches to making [random code deterministic](https://hypothesis.readthedocs.io/en/latest/details.html?highlight=seed#making-random-code-deterministic). I will happily close this and turn it...

enhancement

I am able to run our demo on PyTorch 1.1, and I am sure we are Python 3.7 compatible. Can we bump our documented versions?

Hello! I have been planning to use your extension when building [Python Like You Mean It](https://www.pythonlikeyoumeanit.com/), however I found that, in the Microsoft Edge browser, it collapses the code blocks...

## Summary It would be nice for users to be able to register custom conversion strategies so that hydra-zen's various config-creation functions can know how to convert values of those...

enhancement

This is just a prototype. We can use zen-wrappers to let people specify a method call via instantiate: ```python from hydra_zen import builds, instantiate def outer(Target, *, mthd_name, mthd_args, mthd_kwargs):...

enhancement