aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/bayesflow/README.md
diff options
context:
space:
mode:
authorGravatar Joshua V. Dillon <jvdillon@google.com>2018-03-26 18:50:27 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-03-26 18:52:45 -0700
commit0be974c423f6e5c363db2d95ed335dde4cb4e69b (patch)
tree21ebd16c26fa85b2dcaf8de3221404c1d37cfb68 /tensorflow/contrib/bayesflow/README.md
parent931f6d553172ddfc9ec4a7a94ea2c6233bf33cb0 (diff)
Finish deprecation of tf.contrib.bayesflow.{HMC,MetropolisHastings}.
Diffstat (limited to 'tensorflow/contrib/bayesflow/README.md')
-rw-r--r--tensorflow/contrib/bayesflow/README.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/tensorflow/contrib/bayesflow/README.md b/tensorflow/contrib/bayesflow/README.md
new file mode 100644
index 0000000000..10323dc6d5
--- /dev/null
+++ b/tensorflow/contrib/bayesflow/README.md
@@ -0,0 +1,17 @@
+# Notice
+
+`tf.contrib.bayesflow` has moved!
+
+See new code at [github.com/tensorflow/probability](
+https://github.com/tensorflow/probability).
+
+Switch imports with:
+
+```python
+# old
+import tensorflow as tf
+tfp = tf.contrib.bayesflow
+
+# new
+import tensorflow_probability as tfp
+```