Technical Fridays | Blog
Personal notes on machine learning, deep learning, and software engineering — what's Technical Fridays?
- Personal
- Data Science
- Machine Learning
- R
- Python
- Algorithms
- Cryptography
- Mathematics
- Visualization
- Deep Learning
- Computer Vision
- Natural Language Processing
- Generative AI
- Speech Recognition
- PyTorch
- LLM
- CUDA
- Optimization
-
Speech RecognitionIntroduction to Automatic Speech Recognition
The Automatic Speech Recognition (ASR) systems are widely used nowadays. Some of the most notable uses include Siri, Alexa Google Assistant, Cortana, etc. Let’s understand the fundamentals of...
-
Deep LearningData augmentation
-
Deep LearningGenerative Adversarial Networks variants: DCGAN, Pix2pix, CycleGAN
First, make sure you read the first part of this post, Generative models and Generative Adversarial Networks. This post is its continuation.
-
Deep Learning
Layer-specific learning rates
Note: This post answers the question I asked on Cross-Validated: What are the benefits of layer-specific learning rates?
-
Deep LearningQuick intro to Object detection: R-CNN, YOLO, and SSD
Object detection deals with the detection of object instances in an image. There are a number of methods to accomplish it. The following post summarizes few important object...
-
Deep LearningAttention
Attention is the technique through which the model focuses itself on a certain region of the image or on certain words in a sentence just like the same...
-
Deep LearningBackpropagation Through Time
In the earlier post The gradient problem in RNN, you came to know that RNNs have exploding and vanishing gradient problems. This post discusses how exactly the gradients...
-
Deep LearningAutoencoder: Downsampling and Upsampling
Note: Read the post on Autoencoder written by me at OpenGenus as a part of GSSoC.
-
Deep LearningWeight initialization in neural nets
In deep learning, the goal is to find the optimum weights of the model to get the desired output. In transfer learning, the network is initialized using the...
-
Deep LearningImage captioning using encoder-decoder
Note: This post discusses the project I’m doing currently. Check it on kHarshit/image-captioner. The working demo is available on https://imagecaptioner.herokuapp.com.