In this article, I will walk you through my first entrepreneurial project, what we did right, what we did wrong, and questions we should have wondered earlier. I’ll also explain what this project changed in my life today. Some of the videos and articles I mention are in French, but they’re just illustrations.
I started my entrepreneurial journey in 2016 when I was 20 years old. I was finishing my Bachelor in Economics at the University of Lausanne (Switzerland) at the time. I’ve always wanted to create something from scratch. …
In this article, we will review, in the clearest way that I could come up with, the process of training a Gaussian Mixture Model with EM. By the end of the article, you should have a broader understanding of GMMs, what EM does, and applications of all of this.
We will cover the following points:
As a side note, all the code to generate these graphs and put them into an interactive web application is on…
Over the course of the past few months, I wrote over 100 articles on my personal blog: https://maelfabien.github.io/. That’s quite a decent amount of content. An idea then came to my mind:
🚀 Train a language generation model to speak like me. 🚀
Or more specifically, to write like me. This is the perfect way to illustrate the main concepts of language generation, its implementation using Keras, and the limits of my model.
The whole code of this article can be found on this repository :
Before we get started, I have found this Kaggle Kernel to be a useful…
Graphs are becoming central to machine learning these days, whether you’d like to understand the structure of a social network by predicting potential connections, detecting fraud, understand customer’s behavior of a car rental service or making real-time recommendations for example.
In this article, we’ll cover :
I publish all my articles and the corresponding code on this repository :
This is the final article on my Graph series. If you haven’t, make sure to check the first articles of this series:
For what comes next, open a Jupyter Notebook…
Graphs are becoming central to machine learning these days, whether you’d like to understand the structure of a social network by predicting potential connections, detecting fraud, understand customer’s behavior of a car rental service or making real-time recommendations for example.
In this article, we’ll cover :
This article was originally published on my personal blog: https://maelfabien.github.io/ml/#
I publish all my articles and the corresponding code on this repository :
If you haven't, make sure to check my first article of this series:
NEW: Part 3 is out!
For what comes…
Graphs are becoming central to machine learning these days, whether you’d like to understand the structure of a social network by predicting potential connections, detecting fraud, understand customer’s behavior of a car rental service or making real-time recommendations for example.
In this article, we’ll cover the following topics:
This is the first article of a series of three articles dedicated to Graph Theory, Graph Algorithms and Graph Learning.
This article was originally published on my personal blog: https://maelfabien.github.io/ml/#
I publish all my…
In this article, we’ll focus on Markov Models, where an when they should be used, and Hidden Markov Models. This article will focus on the theoretical part. In a second article, I’ll present Python implementations of these subjects.
Markov Models, and especially Hidden Markov Models (HMM) are used for :
This article was originally published on my personal blog: https://maelfabien.github.io/machinelearning/HMM_1/#
I publish all my articles and the corresponding code on this repository :
Don’t hesitate to star the repo :)
In this tutorial, we’ll see how to create and launch a face detection algorithm in Python using OpenCV and Dlib. We’ll also add some features to detect eyes and mouth on multiple faces at the same time. This article will go through the most basic implementations of face detection including Cascade Classifiers, HOG windows and Deep Learning CNNs.
We’ll cover face detection using :
This article was originally published on my personal blog : https://maelfabien.github.io/tutorials/face-detection/#
The Github repository of this article (and all the…
Boosting techniques have recently been rising in Kaggle competitions and other predictive analysis tasks. I’ll try to explain the concepts of Boosting and AdaBoost as clearly as possible. The initial article was published on my personal blog : https://maelfabien.github.io/machinelearning/adaboost/
In this article, we’ll cover :
I have recently created a dedicated GitHub repository for some tutorials I’m following and/or building. I have also added ML recaps :
For what comes next, consider a binary classification problem. We are either…