Skip to content

Commit d46dae4

Browse files
committed
start porting inferencedata conversion code
1 parent 6538a20 commit d46dae4

File tree

9 files changed

+1311
-443
lines changed

9 files changed

+1311
-443
lines changed

README.rst

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,6 @@ Check out the `getting started guide <http://docs.pymc.io/notebooks/getting_star
1515
using Binder!
1616
For questions on PyMC3, head on over to our `PyMC Discourse <https://discourse.pymc.io/>`__ forum.
1717

18-
The future of PyMC3 & Theano
19-
============================
20-
21-
There have been many questions and uncertainty around the future of PyMC3 since Theano
22-
stopped getting developed by the original authors, and we started experiments with PyMC4.
23-
24-
We are happy to announce that PyMC3 on Theano (which we are `developing further <https://github.com/pymc-devs/Theano-PyMC>`__)
25-
with a new JAX backend is the future. PyMC4 will not be developed further.
26-
27-
See the `full announcement <https://pymc-devs.medium.com/the-future-of-pymc3-or-theano-is-dead-long-live-theano-d8005f8a0e9b>`__
28-
for more details.
29-
3018
Features
3119
========
3220

pymc3/__init__.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,12 @@ def __set_compiler_flags():
4040

4141
from pymc3 import gp, ode, sampling
4242
from pymc3.aesaraf import *
43-
from pymc3.backends import load_trace, save_trace
43+
from pymc3.backends import (
44+
load_trace,
45+
predictions_to_inference_data,
46+
save_trace,
47+
to_inference_data,
48+
)
4449
from pymc3.backends.tracetab import *
4550
from pymc3.blocking import *
4651
from pymc3.data import *

pymc3/backends/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
Saved backends can be loaded using `arviz.from_netcdf`
6161
6262
"""
63+
from pymc3.backends.arviz import predictions_to_inference_data, to_inference_data
6364
from pymc3.backends.ndarray import (
6465
NDArray,
6566
load_trace,

0 commit comments

Comments
 (0)