When running the https://colab.research.google.com/github/tensorchiefs/dl_book/blob/master/chapter_05/nb_ch05_02.ipynb notebook in colab, upon running the 4th cell there is an import error:
ImportError Traceback (most recent call last)
<ipython-input-19-4f70da3f4e95> in <module>()
2 import numpy as np
3 from sklearn.model_selection import train_test_split
----> 4 import tensorflow_probability as tfp
5
6 get_ipython().magic('matplotlib inline')
4 frames
/usr/local/lib/python3.6/dist-packages/tensorflow_probability/__init__.py in <module>()
73
74 # from tensorflow_probability.google import staging # DisableOnExport
---> 75 from tensorflow_probability.python import * # pylint: disable=wildcard-import
76 from tensorflow_probability.python.version import __version__
77 # pylint: enable=g-import-not-at-top
/usr/local/lib/python3.6/dist-packages/tensorflow_probability/python/__init__.py in <module>()
22 from tensorflow_probability.python import debugging
23 from tensorflow_probability.python import distributions
---> 24 from tensorflow_probability.python import experimental
25 from tensorflow_probability.python import glm
26 from tensorflow_probability.python import layers
/usr/local/lib/python3.6/dist-packages/tensorflow_probability/python/experimental/__init__.py in <module>()
32 from __future__ import print_function
33
---> 34 from tensorflow_probability.python.experimental import auto_batching
35 from tensorflow_probability.python.experimental import edward2
36 from tensorflow_probability.python.experimental import mcmc
/usr/local/lib/python3.6/dist-packages/tensorflow_probability/python/experimental/auto_batching/__init__.py in <module>()
22 from tensorflow_probability.python.experimental.auto_batching import allocation_strategy
23 from tensorflow_probability.python.experimental.auto_batching import dsl
---> 24 from tensorflow_probability.python.experimental.auto_batching import frontend
25 from tensorflow_probability.python.experimental.auto_batching import instructions
26 from tensorflow_probability.python.experimental.auto_batching import liveness
/usr/local/lib/python3.6/dist-packages/tensorflow_probability/python/experimental/auto_batching/frontend.py in <module>()
42 from tensorflow.python.autograph.converters import return_statements
43 from tensorflow.python.autograph.core import converter
---> 44 from tensorflow.python.autograph.core import naming
45 from tensorflow.python.autograph.pyct import anno
46 from tensorflow.python.autograph.pyct import compiler
ImportError: cannot import name 'naming'
---------------------------------------------------------------------------
NOTE: If your import is failing due to a missing package, you can
manually install dependencies using either !pip or !apt.
To view examples of installing some common dependencies, click the
"Open Examples" button below.
When running the https://colab.research.google.com/github/tensorchiefs/dl_book/blob/master/chapter_05/nb_ch05_02.ipynb notebook in colab, upon running the 4th cell there is an import error: