Skip to main content

Posts

Showing posts from December, 2019

Fixed issues:AttributeError: module 'tensorflow' has no attribute 'Session'

The previous blog, Train Custom Image Classification Model using Google Inception API was shared with you on how to train and prepare your data set. Some reader feedback that they are facing some issues with data set compilation. The issues mentioned were: AttributeError: module 'TensorFlow' has no attribute 'Session'. To fix these issues, you only need to reinstall tensorflow-gpu 1.15.0: pip3 install -- upgrade -- force - reinstall tensorflow - gpu == 1.15 . 0 more info: stack overflow hwerwerTrain Custom Image Classification Model using Google Inception API Train Custom Image Classification Model using Google Inception API

Building TensorFlow on Android Studio

Building Tensorflow on Android Station is simple. 1. Download Tensor Sample Code here:  https://github.com/tensorflow/tensorflow 2. Open Android Studio, then import ..\tensorflow\examples\android. 3. Open Build Grade, then change:' bazel ' to 'none' 4. Done. You can install built APk on your android phone and play with it! Next:  Setup Ubuntu enviroment on Windows 10 Building TensorFlow on Android Studio with  fine-tuning Inception net