- 09 Oct 2018 »
Softmax classifier implementation
Introduction
In this post, we are going to build a Softmax classifier to classify fashion MNIST dataset.
Multinomial Logistic Regression
Why
Considering that we are expected to predict a catego...
- 18 Sep 2018 »
Build A Simple Inverted Index Program
Introduction
I’ve benn learning searching algorithms these days and I am introduced some interesting applications based on them, one is to look up index given a set of files. This is also called i...
- 16 Sep 2018 »
About SVM
Introduction
I’ve been studying a course unit called Adcanced Signal Processing with deep learning this semester. Actually, it’s not my first time to learn about SVM, I have built up some basic und...
- 01 Sep 2018 »
This Week I Learnt(1)
Why
I am being quite lazy again to write my blogs these days. Though I know for most time I am just writing them for myself(few persons would read my blog, haha), it’s like to get myself a better...
- 08 Aug 2018 »
Slow and Fast Pointer in LinkedList
Slow pointer and fast pointer are simply the names given to two pointer variables.
Slow Pointer
Travels the linked list one node at a time
Fast Pointer
Travels the linked list two nodes at a time....