Sigmoid Freud
An Exploration in Data Science
IOTA Micropayment POC
Power of the IOTA Cryptocurrency Have you ever seen Office Space the movie? I was inspired initially as strange as it is, by that movie. The protagonists in the move write software to reroute money that is a rounding error caused by banking transfer and generic payments to the company....
Quora Answer Classification Problem
This problem featured here seemed interesting and it was a good place for me to try something new because of the mix of categorical and continuous data fields. I implemented a feature ranking algorithm featured here. It is a filter wrapper approach that measures the importance of each feature and...
HackerRank problem in machine learning Expert Level. For the record I am not an expert.
I just took a crack at this problem and see what I could do. I had decent and impressive results if I do say so myself. I have not made a formal submission and I have written a decent amount of code for this. I did some munging and divided...
Sketchy Business Practices and Higher Throughput? An Examination of Applications of Sketching Algorithms.
Here we will examine the implementation of Hyperloglog (a sketching algorithm) which estimates SET counts on a collection of streaming objects or even a static collection. The idea is simple. Taking the objects in the stream or collection you apply a set of hasing functions that map objects to a...
How Similar are Things According to Google?
The following is just a code snippet that will tell give you back a continuous score between 0 and 1 as to how similar two things are according to google. The script is adapted from the Normalized Google Distance formula highlighted on wikipedia here. import google import math import sys...