Deploying Scikit-learn model on AWS Lambda using Zappa
Mini project; Following this blog post step by step to make a XGBoost model created through Scikit-learn available through a Lambda function using Zappa.
More …Mini project; Following this blog post step by step to make a XGBoost model created through Scikit-learn available through a Lambda function using Zappa.
More …When comparing items at sites that gathers reviews, it’s a quite common problem that the scores are plain averages of the reviews which doesn’t feel fair in the case where items with only a few maybe biased reviews gets a very high ranking - appstore developers asking their friends to rate their new app upon release as a prime example. This feeling of unfairness has been shown in usability studies as well; an item with 4.5 average and 12 reviews is generally preferred over an item with 5 average but only 2 reviews.
Another way to think of review scores rather than as simple averages then is to see it as an expression for an aggregated wisdom of the crowd. From this understanding follows that in order to not unfairly assign too much weight to reviews for items with few reviews, we need to weight the reviews based on how many there are.
More …Sequence to sequence models, prime example is translating sentences from one language to another. This uses an encoding network followed by a decoding network, so that you try to predict the most likely sentence in an output language conditioned by the sentence in the input language.
More …This week cover word embeddings with the popular algorithms Word2Vec and GloVe. Good basic coverage of the topic, but didn’t present much new personally since I’ve already read the original papers in question and used word embeddings a bit.
In essence;
Main takeaways from the papers Two Decades of Recommender Systems at Amazon.com and Deep Neural Networks for YouTube recommendations, plus a bunch of insightful quotes included below.