Jun 28, 20232 min readtensorflowPython Deep Learning Tips - Convolutional Network with TensorFlow's Convolution NetworkOne of the key tools in my arsenal for image recognition tasks is a Convolutional Neural Network (CNN) implemented in TensorFlow's...
Apr 19, 20231 min readdeep learningPython TensorFlow Tips -When to use Sparse Categorical Crossentropy vs Categorical Crossentropy lossTensorFlow is a powerful framework for building neural networks. With TensorFlow we can build deep-learning models that predict either a...
Jan 17, 20232 min readtensorflow tipsPython Deep Learning Tips - How to Build a Deep Forward Network in Tensorflow with Sequential APIRated 5 out of 5 stars.(1)In Python use Tensorflow to build a deep forward deep learning architecture using the sequential model. The problem with such a long...
Jan 9, 20231 min readdeep learningPython Deep Learning Tips - How to Buil a Feed Forward Network in Tensorflow with the Sequential APIIn Python using Tensorflow design a Feed Forward neural network to predict a regression problem with 40 features. To stick to the style...
Jan 8, 20231 min readdeep learning tipsPython Deep Learning Tips - How to Buil a Perceptron in Tensorflow with the Sequential APIThe perceptron model was the first and simplest type of neural network developed back in 1943. It works well but is certainly far from as...