You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Steps to reproduce:
!pip install -q -U trax
import numpy as np # regular ol' numpy
from trax import fastmath
from trax import layers as tl
from trax import shapes
from trax.fastmath import numpy as jnp # For use in defining new layer types.
from trax.shapes import ShapeDtype
from trax.shapes import signature
# Error logs:
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
Cell In[22], line 3
1 import numpy as np # regular ol' numpy
----> 3 from trax import fastmath
4 from trax import layers as tl
5 from trax import shapes
File ~/NovaceneAI/trax_projects/.venv/lib/python3.8/site-packages/trax/__init__.py:18
1 # coding=utf-8
2 # Copyright 2021 The Trax Authors.
3 #
(...)
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
16 """Trax top level import."""
---> 18 from trax import data
19 from trax import fastmath
20 from trax import layers
File ~/NovaceneAI/trax_projects/.venv/lib/python3.8/site-packages/trax/data/__init__.py:70
67 from trax.data.inputs import UnBatch
68 from trax.data.inputs import UniformlySeek
---> 70 from trax.data.tf_inputs import add_eos_to_output_features
71 from trax.data.tf_inputs import BertGlueEvalStream
...
35 from trax.layers.attention import SplitIntoHeads
38 # Layers are always CamelCase, but functions in general are snake_case
39 # pylint: disable=invalid-name
ImportError: cannot import name 'MergeHeads' from 'trax.layers.attention'
The text was updated successfully, but these errors were encountered:
Description
ImportError thrown after importing libraries
...
Environment information
trax 1.4.1
For bugs: reproduction and error logs
The text was updated successfully, but these errors were encountered: