Plurrrr

Wed 14 Apr 2021

Rust in Production: MeiliSearch

In this interview, I talk with Thomas Payet, the co-founder and COO of MeiliSearch. MeiliSearch is an open-source search engine that is among the top 20 most starred Rust projects on GitHub at the time of writing. We talk about MeiliSearch and how Rust and its ecosystem have helped them create it.

Read further to learn about their experience with Rust and discover tips for starting your own open-source project.

Source: Rust in Production: MeiliSearch, an article by Gints Dreimanis.

The k-Nearest Neighbors (kNN) Algorithm in Python

In this tutorial, you’ll get a thorough introduction to the k-Nearest Neighbors (kNN) algorithm in Python. The kNN algorithm is one of the most famous machine learning algorithms and an absolute must-have in your machine learning toolbox. Python is the go-to programming language for machine learning, so what better way to discover kNN than with Python’s famous packages NumPy and scikit-learn!

Source: The k-Nearest Neighbors (kNN) Algorithm in Python, an article by Joos Korstanje.