= jax.random.PRNGKey(0)
key = jax.random.normal(key, (1000000,))+3
t
plot(t)
๐ View as a histogram
plot
plot (x:jax.Array, center:str='zero', max_s:int=10000, plt0:Any=True, ax:Optional[matplotlib.axes._axes.Axes]=None)
Type | Default | Details | |
---|---|---|---|
x | Array | Tensor to explore | |
center | str | zero | Center plot on zero , mean , or range |
max_s | int | 10000 | Draw up to this many samples. =0 to draw all |
plt0 | typing.Any | True | Take zero values into account |
ax | typing.Optional[matplotlib.axes._axes.Axes] | None | Optionally provide a matplotlib axes. |
Returns | PlotProxy |
="range") plot(t, center
="mean") plot(t, center
-3, 0)) plot(jnp.maximum(t
-3, 0), plt0=False) plot(jnp.maximum(t
= plt.subplots(figsize=(6, 2))
fig, ax,
fig.tight_layout()=ax); plot(t, ax
# # |hide
# import gc