I would like to know if it is possible to optimize the image recognition of Tensorflow (InceptionV.3). Indeed, I would like to introduce the latter on a VPS equipped only CPU. Now, I manage to get a result after 30-40 seconds, and I would like to know if there would not be a solution to otherwise reduce this time: / (Without GPU)
I get this warning when executing of this code:
2017-07-15 02: 40: 19.230276: W tensorflow / core / platform / cpu_feature_guard.cc: 45] The TensorFlow library was not compiled to use SSE4.1 instructions, but these are CPU computations.
2017-07-15 02: 40: 19.230359: W tensorflow / core / platform / cpu_feature_guard.cc: 45] The TensorFlow library was not compiled to use SSE4.2 instructions, but these are CPU computations.
Do you think the compilation will greatly reduce this time? I have not found any documents on their site that speak of this warning. I'm new to Tensorflow, so I do not understand everything ... I'm on ubuntu 16.04 LTS, and i use python 2.7.12
Thank you in advance ! :)