Tensorflow

IndexedSlices in Tensorflow

What are `IndexedSlices` and why are they get used in Tensorflow?

avatar
Biswajit Sahoo

Tensorflow 2 code for Attention Mechanisms chapter of Dive into Deep Learning (D2L) book

Implementing attention mechanisms, multi-head attention, transformer architecture, etc. from scratch in Tensorflow.

avatar
Biswajit Sahoo

Reading multiple files in Tensorflow 2 using Sequence

Create a data pipeline by incrementally reading thousands of `csv` files using Tensorflow `Sequence`.

avatar
Biswajit Sahoo

Efficiently reading multiple files in Tensorflow 2

Use of `map` and `prefetch` combined with generators can speed up data ingestion.

avatar
Biswajit Sahoo

Doing Linear Algebra using Tensorflow 2

Perform linear algebraic operations only using Tensorflow.

avatar
Biswajit Sahoo

Reading multiple files in Tensorflow 2

Create a data pipeline by incrementally reading thousands of `csv` files in Tensorflow.

avatar
Biswajit Sahoo

Using Python Generators

Understanding python generators with simple examples.

avatar
Biswajit Sahoo