2022-09-22 12:26:48 -07:00
|
|
|
# Copyright 2018 The JAX Authors.
|
2020-10-16 16:55:14 -04:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2022-10-12 13:42:11 -07:00
|
|
|
from typing import cast
|
2020-10-16 16:55:14 -04:00
|
|
|
|
|
|
|
import numpy as np
|
|
|
|
import scipy.stats as osp_stats
|
|
|
|
|
|
|
|
from jax import lax
|
2023-03-08 10:29:04 -08:00
|
|
|
import jax.numpy as jnp
|
2022-03-07 12:25:01 -08:00
|
|
|
from jax._src.lax.lax import _const as _lax_const
|
2023-03-08 10:29:04 -08:00
|
|
|
from jax._src.numpy.util import _wraps, _promote_args_inexact
|
2022-10-12 13:42:11 -07:00
|
|
|
from jax._src.typing import Array, ArrayLike
|
2020-10-16 16:55:14 -04:00
|
|
|
from jax.scipy import special
|
|
|
|
|
|
|
|
@_wraps(osp_stats.norm.logpdf, update_doc=False)
|
2022-10-12 13:42:11 -07:00
|
|
|
def logpdf(x: ArrayLike, loc: ArrayLike = 0, scale: ArrayLike = 1) -> Array:
|
2020-10-16 16:55:14 -04:00
|
|
|
x, loc, scale = _promote_args_inexact("norm.logpdf", x, loc, scale)
|
2021-05-24 10:43:35 +01:00
|
|
|
scale_sqrd = lax.square(scale)
|
2022-03-07 12:25:01 -08:00
|
|
|
log_normalizer = lax.log(lax.mul(_lax_const(x, 2 * np.pi), scale_sqrd))
|
2021-05-24 10:43:35 +01:00
|
|
|
quadratic = lax.div(lax.square(lax.sub(x, loc)), scale_sqrd)
|
2022-03-07 12:25:01 -08:00
|
|
|
return lax.div(lax.add(log_normalizer, quadratic), _lax_const(x, -2))
|
2020-10-16 16:55:14 -04:00
|
|
|
|
|
|
|
|
|
|
|
@_wraps(osp_stats.norm.pdf, update_doc=False)
|
2022-10-12 13:42:11 -07:00
|
|
|
def pdf(x: ArrayLike, loc: ArrayLike = 0, scale: ArrayLike = 1) -> Array:
|
2020-10-16 16:55:14 -04:00
|
|
|
return lax.exp(logpdf(x, loc, scale))
|
|
|
|
|
|
|
|
|
|
|
|
@_wraps(osp_stats.norm.cdf, update_doc=False)
|
2022-10-12 13:42:11 -07:00
|
|
|
def cdf(x: ArrayLike, loc: ArrayLike = 0, scale: ArrayLike = 1) -> Array:
|
2020-10-16 16:55:14 -04:00
|
|
|
x, loc, scale = _promote_args_inexact("norm.cdf", x, loc, scale)
|
|
|
|
return special.ndtr(lax.div(lax.sub(x, loc), scale))
|
|
|
|
|
|
|
|
|
|
|
|
@_wraps(osp_stats.norm.logcdf, update_doc=False)
|
2022-10-12 13:42:11 -07:00
|
|
|
def logcdf(x: ArrayLike, loc: ArrayLike = 0, scale: ArrayLike = 1) -> Array:
|
2020-10-16 16:55:14 -04:00
|
|
|
x, loc, scale = _promote_args_inexact("norm.logcdf", x, loc, scale)
|
2022-10-12 13:42:11 -07:00
|
|
|
# Cast required because custom_jvp return type is broken.
|
|
|
|
return cast(Array, special.log_ndtr(lax.div(lax.sub(x, loc), scale)))
|
2020-10-16 16:55:14 -04:00
|
|
|
|
|
|
|
|
|
|
|
@_wraps(osp_stats.norm.ppf, update_doc=False)
|
2022-10-12 13:42:11 -07:00
|
|
|
def ppf(q: ArrayLike, loc: ArrayLike = 0, scale: ArrayLike = 1) -> Array:
|
2020-12-08 13:03:30 -08:00
|
|
|
return jnp.asarray(special.ndtri(q) * scale + loc, float)
|