Paper Notes / Contrastive Predicting Coding
This is an attempt to write down my understanding of the paper “Representation Learning with Contrastive Predictive Coding” by Oord et al.
This is an attempt to write down my understanding of the paper “Representation Learning with Contrastive Predictive Coding” by Oord et al.
২০২২ এ GRE ও IELTS পরীক্ষা দেই। পরেরটায় আলহামদুলিল্লাহ ভালো ফলাফল আসলেও প্রথমটায় একদমই খারাপ করি। নিচে আমার শিক্ষা জীবনের ফলাফলের সারাংশ দেয়া হলঃ
Most of us are already introduced to permutation and combination in high school math classes. I understand clearly what they separately define. But I get con...
Hello World in Email
ভেক্টর এর পরিচিতি ভেক্টর এর নির্দিষ্ট সংজ্ঞা শুরুতে দিলে কিছুটা ঝামেলার মনে হতে পারে। একটা উদাহরণ দেই এর চেয়ে। আন্দাজে একটা ভেক্টর ধরে নিলাম, (a=(1,2))। এই ভ...
Boosting Boosting is also a general approach that can be applied to many statistical methods. Unlike bagging, boosting use the same dataset. Boosting works o...
Random Forest
Bagging, random forest, and boosting are statistical approach to further enhance already available algorithms. They all seem to deal with multiple training o...
Multinomial naive bayes is the naive Bayes algorithm for multinomially distributed data. For a brief and intuitive explanation of Bayes theorem, read this ke...
Bayes Theroem Any naive bayes approach including Gaussian Naive Bayes depends on the Bayes Theorem. Bayes theorem gives us the probability of an event, given...
Table of Contents 1 Loading Data1.1 Declare tasks for linear regression2 Preprocessing2.1 Null Value2.2 &nbs...
Table of Contents 1 Binary Classification2 Multiclass Classification3 Multilabel Multiclass Classification3.1 Exa...
Keyphrase Extraction Using Deep Recurrent Neural Networks on Twitter
Keyword Extraction Using Support Vector Machine
LSTM Recurrent Neural Networks for Short Text and Sentiment Classification
4.1 An Overview of Classification Predicting a qualitative (string/label) response for an observation can be referred to as classifying that observation. Thi...
Here’s a sample data matrix, x = 2, 6, 8, 56, 13, 8, 4, 6, 23 Sample groups, m = 3, number of observation in each group, n = 3. Groups are column...
Content Mean Mode Median Quartiles Variance Standard Deviation
You’ll find this post in your _posts directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different wa...
Unbounded Knapsack Given a knapsack weight W and a set of N items with certain value and weight , we need to calculate minimum amount that cou...
Problem Statement ANARC09A - Seinfeld
Problem Definition You’re given a non-empty string made in its entirety from opening and closing braces. Your task is to find the minimum number of “operatio...
Problem Statement ENIGMATH - PLAY WITH MATH
Given a number, we have to find the next smallest palindrome which is larger than this number.
Sieve of Eratosthenes is explained HERE Bitwise sieve is an optimized implementation of Sieve of Eratosthenes. It does the same thing but more memory effic...
Problem Statement Explanation How many squares a (4x4) square holds? the answer is-
Problem Statement Explanation This might seem like a math problem. But it’s not. There’s a pattern in here. Firstly, figure out when output has no number. If...