TensorFlow
How to Generate Images with Variational Autoencoders(VAE) (Create VAE from scratch using Keras and TensorFlow) Paid Members Public
An autoencoder takes an input image and creates a low-dimensional representation, i.e., a latent vector. This vector is then used to reconstruct the original image. Regular autoencoders get an image as input and output the same image. However, Variational AutoEncoders (VAE) generate new images with the same distribution as
Distributed training with TensorFlow: How to train Keras models on multiple GPUs Paid Members Public
Training computer vision models requires a lot of time because of the size of the models and image data. Therefore, training these models can take prolonged periods of time, especially when training on a single GPU. You can reduce the training time by distributing the training across several GPUs. This
Create U-Net from scratch (Image segmentation with U-Net with Keras and TensorFlow) Paid Members Public
In the Implementing Fully Convolutional Networks (FCNs) from scratch in Keras and TensorFlow article, you saw how to build an image segmentation model with FCNs. However, due to the model's limitations, it did not perform very well in the segmenting task. In this post, you will see how to improve

Transfer learning guide(With examples for text and images in Keras and PyTorch) Paid Members Public
Training computer vision (CV) or natural language processing (NLP) models can be expensive and requires large datasets. If labeling is done manually, the process will take a longer training time and requires expensive hardware. For instance, the Generative Pre-trained Transformer 2 (GPT-2), a benchmark-setting language model created by Open AI

TensorBoard tutorial (Deep dive with examples and notebook) Paid Members Public
TensorBoard is a visualization library that enables data science practitioners to visualize various aspects of their machine learning modeling. For instance, you can use TensorBoard to: * Visualize the performance of the model. * Tuning model parameters. * Profile the executions of the program. For example, check the utilization of GPUs. * Debug machine

TensorFlow Recurrent Neural Networks (Complete guide with examples and code) Paid Members Public
Recurrent Neural Networks (RNNs) are a class of neural networks that form associations between sequential data points. For example, the average sales made per month over a certain period. The data has a natural progression from month to month, meaning that the sales for the first month are the only

Flax vs. TensorFlow Paid Members Public
Flax is the neural network library for JAX. TensorFlow is a deep learning library with a large ecosystem of tools and resources. Flax and TensorFlow are similar but different in some ways. For instance, both Flax and TensorFlow can run on XLA. Let's look at the differences between Flax and

How to build TensorFlow models with the Keras Functional API (Examples, code, and notebook) Paid Members Public
The Keras Functional API provides a way to build flexible and complex neural networks in TensorFlow. The Functional API is used to design networks that are not linear. In this article, you will discover that the Keras Functional API is used to create networks that: * Are non-linear. * Share layers. * Have