Real World Recommendation System - Part 1
- Nikhil Garg tl;dr: "FAANG and other top tech companies have independently converged on a common architecture for production grade recommendation systems." This architecture is domain / vertical agnostic and can power all sorts of applications — from e-commerce and feeds to search, notifications, etc... Nikhil starts from the basics, explains nuances and describes this universal architecture.featured in #310
featured in #293
How We Optimized Python API Server Code 100x
- Vadim Markovtsev tl;dr: "Some of the tricks we used to speed up calls to our analytical API written in Python: played with asyncio, messed with SQLAlchemy, hacked deep in asyncpg, rewrote parts in Cython, found better data structures, replaced some pandas with pure numpy."featured in #291
Red Hot: The 2021 Machine Learning, AI and Data (MAD) Landscape
- Matt Turck tl;dr: Matt covers the macro view: making sense of the ecosystem’s complexity, financings, IPOs and M&A, a landscape of the ecosystem, key trends and more.featured in #258
Machine Learning Is Going Real-time
- Chip Huyen tl;dr: Chip discusses two approaches: (1) Online predictions, where an ML system makes predictions in real-time. (2) Online learning, where ML system incorporate new data and update models in real-time.featured in #219
Experimenting With Automatic Video Creation From A Web Page
- Peggy Chi Irfan Essa tl;dr: "we envision a future where creators focus on making high-level decisions and an ML model interactively suggests detailed temporal and graphical edits for a final video creation on multiple platforms."featured in #215
The Case For A Learned Sorting Algorithm
- Adrian Colyer tl;dr: On a large dataset i.e. 1 billion items, Learned Sort outperforms its competitor by a factor of 1.49x, and that includes time taken to train the model. Adrian explains how it works.featured in #211
Optimal Peanut Butter And Banana Sandwiches
- Ethan Rosenthal tl;dr: "How do we make optimal peanut butter and banana sandwiches? You take a picture of your banana and bread, pass the image through a deep learning model to locate said items, do some nonlinear curve fitting to the banana, transform to polar coordinates and “slice” the banana along the fitted curve..."featured in #202
How To Trick A Neural Network In Python 3
- Alvin Wan tl;dr: A tutorial that teaches you to trick an animal classifier and an understanding of how to defend against such tricks.featured in #190
Face Detection Using JavaScript API - face-api.js
- Deepak Gupta tl;dr: Built on TensorFlow, this solves face detection, face recognition and face landmark detection, optimized for web and mobile devices.featured in #157