Error importing tensor flow: terminating a call after invoking an instance of "Xbyak :: Error"

I am trying to debug an error using shadoworflow. When I import a tensor stream I get the following error:

import tensor flow as tf

ending a call after invoking an instance of "Xbyak :: Error"

what (): internal error

Canceled (kernel resets)

Here are the installation details

OS β†’ Ubuntu 14.04

Anaconda installation method β†’ ​​conda 4.4.11 (conda install tensorflow)

python3 --version -> Python 3.6.4 :: Anaconda, Inc.

If anyone has experience or knowledge on how to fix this problem, I would be very grateful. A search here on google and github gave the suggested problem, probably with MKL-DNN , did anyone find work around?

+5
source share
2 answers

As stated in my comment, I had the same problem as you. Anaconda does not seem to fully support tensor flow or has an older version, because when I installed shadoworflow using pip install tensorflow , I had no problems. Hope this solves this for you.

0
source

Even I continued to get this error when I created another environment and installed TF in it. Tensorflow seems to be the main issue here. What I decided to solve, I just installed Tensorflow using this pip3 install tensorflow . Hope this solves your problem.

0
source

Source: https://habr.com/ru/post/1275625/


All Articles