Transfer Learning with InceptionV3 model on Cats vs Dogs Get link Facebook X Pinterest Email Other Apps January 11, 2023 #!/usr/bin/python3 import tensorflow as tf class MyCB(tf.keras.callbacks.Callback): def on_epoch_end(self, epoch, logs={}): if (logs.get('loss') Read more
Horses / Humans in TensorFlow Get link Facebook X Pinterest Email Other Apps January 10, 2023 #!/usr/bin/python3 import tensorflow as tf class MCb(tf.keras.callbacks.Callback): def on_epoch_end(self, epoch, logs={}): if (logs.get('loss') Read more
Fashion MNIST in TensorFlow Get link Facebook X Pinterest Email Other Apps January 10, 2023 #!/usr/bin/python3 import tensorflow as tf class MnCb(tf.keras.callbacks.Callback): def on_epoch_end(self, epoch, logs={}): if (logs.get('loss') Read more
MNIST Code in TensorFlow Get link Facebook X Pinterest Email Other Apps January 10, 2023 #!/usr/bin/python3 import tensorflow as tf class MCb(tf.keras.callbacks.Callback): def on_epoch_end(self, epoch, logs={}): if (logs.get('loss') Read more
Setting up TensorFlow on Mac Get link Facebook X Pinterest Email Other Apps January 10, 2023 Run the following commands pip install tensorflow-macos pip install pillow pip install scipy Read more
Setting up Tensorflow on Ubuntu Get link Facebook X Pinterest Email Other Apps January 17, 2022 apt-get install pip3 pip3 install tensorflow pip3 install tensorflow-datasets pip3 install matplotlib Read more