Can I use TensorFlow in the Google App Engine?

I have a data processing module as part of my GAE application. TensorFlow has separate installers for Linux and OSX, which indicates that it may not play well in the GAE sandbox. Can I use TensorFlow in the GAE module?

+5
source share
1 answer

No, you cannot install TensorFlow on standard instances.

However, you can install anything you like in managed virtual machines . Although it may be easier to use instances of the compute kernel instead.

+6
source

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


All Articles