probability
probability copied to clipboard
Probabilistic reasoning and statistical analysis in TensorFlow
Hello, it tooks me a whlie to understand this: ``` my_pdf = tfp.layers.MixtureNormal(3, 1)(np.array([1/3, 0/3, 2/3, 4, # mean1 5, # std1 6, # mean2 7, # std2 8, #...
I used TensorFlow version is 2.7, and tensorflow_probability== 0.15.0。  When I was programming with pycharm, " tensorflow.kears " was no longer supported, and I was confused. Then I checked...
Hi all, recently I am dealing with state space model. For the transition equation x_t = Ax_{t-1} + W w_t, the w_t~N(0, I) is a multivariate normal distribution and W...
To reproduce the result: ``` import tensorflow_probability as tfp tfd = tfp.distributions # Zero inflated log-normal ziln = tfd.Mixture( cat=tfd.Categorical(probs=[0.9, 0.1]), components=[ tfd.Deterministic(loc=0), tfd.LogNormal(loc=6, scale=1), ]) print(ziln.log_prob(0)) # Expected output:...
Fixes the issue #1627: `NotImplementedError: Layer DenseVariational has arguments in __init__ and therefore must override get_config` Some unit tests are failing due to an internal issue in TF-Nightly as of...
Hello TensorFlow Probability Team, I'm using the Structural Time Series (STS) module for time series forecasting, specifically with a model that includes a `LinearRegression` component for exogenous variables. Currently, when...
Hello everybody! I am adopting the RBF Kernel to work with Gaussian Process Regression and data from yfinance. I am able to fit the data and make predicitons, but the...
There is a package for Bayesian Regression Trees in PYMC. Are there plans to offer this in TFP as well at one point?
I am trying to run SGLD example using eager mode, but I am getting the following error: ``` NotImplementedError Traceback (most recent call last) in () 4 preconditioner_decay_rate=0.99, 5 burnin=1500,...
It takes a noticeably long time to just import TFP substrates: ``` $ time python3 -c "import tensorflow_probability.substrates.jax" python3 -c "import tensorflow_probability.substrates.jax" 4.72s user 0.77s system 116% cpu 4.724 total...