The Lambda Deep Learning Blog

Featured Posts

Recent Posts

Install TensorFlow & PyTorch for the RTX 3090, 3080, 3070

Instructions for getting TensorFlow and PyTorch running on NVIDIA's GeForce RTX 30 Series GPUs (Ampere), including RTX 3090, RTX 3080, and RTX 3070.

Published 08/10/2021 by Michael Balaban

TensorFlow 2.0 Tutorial 01: Basic Image Classification

This tutorial explains the basics of TensorFlow 2.0 with image classification as the example. 1) Data pipeline with dataset API. 2) Train, evaluate, save and restore models with Keras. 3) Multiple-GPU with distributed strategy. 4) Customized training with callbacks.

Published 10/01/2019 by Chuan Li

TensorFlow 2.0 Tutorial 05: Distributed Training across Multiple Nodes

Distributed training allows scaling up deep learning tasks so bigger models can be learned from more extensive data. In this tutorial, we will explain how to do distributed training across multiple nodes.

Published 06/07/2019 by Chuan Li

TensorFlow 2.0 Tutorial 04: Early Stopping

This tutorial explains how early stopping is implemented in TensorFlow. The key lesson is to use tf.keras.EarlyStopping callback. Early stopping is triggered by monitoring if a certain quantity has improved over the latest period of time.

Published 06/06/2019 by Chuan Li

TensorFlow 2.0 Tutorial 03: Saving Checkpoints

This tutorial explains how to use checkpoints to save and restore TensorFlow models during the training. The key is to use tf.kears.ModelCheckpoint callbacks to save the model. Set initial_epoch in the model.fit call to restore the model from a pre-saved checkpoint.

Published 06/06/2019 by Chuan Li

TensorFlow 2.0 Tutorial 02: Transfer Learning

This tutorial explains how to do transfer learning with TensorFlow 2. We cover handling customized datasets, restoring backbone with Keras's application API, and restoring backbone from the disk.

Published 06/05/2019 by Chuan Li

RTX 2080 Ti Deep Learning Benchmarks with TensorFlow

RTX 2080 Ti vs. RTX 2080 vs. Titan RTX vs. Tesla V100 vs. Titan V vs. GTX 1080 Ti vs. Titan Xp benchmarks neural net training.

Published 03/04/2019 by Stephen Balaban

How to Run OpenAI's GPT-2 Text Generator on Your Computer

OpenAI recently published a blog post on their GPT-2 language model. This tutorial shows you how to run the text generator code yourself.

Published 02/16/2019 by Stephen Balaban

Text Generation: Char-RNN Data preparation and TensorFlow implementation

This tutorial is about making a character-based text generator using a simple two-layer LSTM. It will walk you through the data preparation and the network architecture. TensorFlow implementation is available at the end of the tutorial.

Published 02/08/2019 by Chuan Li

...

Next page