TensorFlow

Transfer learning guide(With examples for text and images in Keras and PyTorch) 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

Kamanda Wycliffe
Kamanda Wycliffe
TensorFlow

TensorBoard tutorial (Deep dive with examples and notebook) 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

Kamanda Wycliffe
Kamanda Wycliffe
TensorFlow

TensorFlow Recurrent Neural Networks (Complete guide with examples and code) 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

Thomas Tsuma
Thomas Tsuma
TensorFlow

How to build TensorFlow models with the Keras Functional API (Examples, code, and notebook) 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

Derrick Mwiti
Derrick Mwiti
TensorFlow
How to create custom training loops in Keras

How to create custom training loops in Keras Members Public

Training models in Keras is usually done using the fit method. However, you may want more control over the training process. To do that, you'll need to create a custom training loop. This involves setting up a custom function to compute the loss and gradient. This article will

Derrick Mwiti
Derrick Mwiti
TensorFlow
How to build CNN in TensorFlow

How to build CNN in TensorFlow(examples, code, and notebooks) Members Public

In the artificial neural networks with TensorFlow article, we saw how to build deep learning models with TensorFlow and Keras. We covered various concepts that are foundational in training neural networks with TensorFlow. In that article, we used a Pandas DataFrame to build a classification model in Keras. This article

Derrick Mwiti
Derrick Mwiti
TensorFlow

How to build artificial neural networks with Keras and TensorFlow Members Public

Building artificial neural networks with TensorFlow and Keras requires understanding some key concepts. After learning these concepts, you'll install TensorFlow and start designing neural networks. This article will cover the concepts you need to comprehend to build neural networks in TensorFlow and Keras. Without further ado, let'

Derrick Mwiti
Derrick Mwiti
TensorFlow
Object detection with TensorFlow 2 Object detection API

Object detection with TensorFlow 2 Object detection API Members Public

Building object detection and image segmentation models is slightly different from other models. Majorly because you have to use specialized models and prepare the data in a particular way. This article will examine how to perform object detection and image segmentation on a custom dataset using the TensorFlow 2 Object

Derrick Mwiti
Derrick Mwiti
TensorFlow