I'm currently trying to use some pretrained models that are provided as docker image to use for some NLP stuff. The problem however is, that whenever I try to run the docker image I get the following error message:
tensorflow/core/platform/cpu_feature_guard.cc:37] The TensorFlow library was compiled to use FMA instructions, but these aren't available on your machine.
I already checked my CPU flags using /proc/cpuinfo/
and can confirm that it does not support fma
. I assume there must be some way to recompile the TensorFlow library on my machine so I can run the image, but several google searches yielded no results, so I hope someone could give me some pointers on how to proceed.