Machine Learning
39.4K subscribers
4.35K photos
40 videos
50 files
1.42K links
Real Machine Learning — simple, practical, and built on experience.
Learn step by step with clear explanations and working code.

Admin: @HusseinSheikho || @Hussein_Sheikho
Download Telegram
Face detection with dlib (HOG and CNN)

📖 In this tutorial, you will learn how to perform face detection with the dlib library using both HOG + Linear SVM and CNNs. The dlib library is arguably one of the most utilized packages for face recognition. A Python package…...

🏷️ #dlib #FaceApplications #Tutorials
1
Optimizing dlib shape predictor accuracy with find_min_global

📖 In this tutorial you will learn how to use dlib’s find_min_global function to optimize the options and hyperparameters to dlib’s shape predictor, yielding a more accurate model. A few weeks ago I published a two-part series on using dlib to…...

🏷️ #dlib #FaceApplications #FacialLandmarks #ShapePredictors #Tutorials
Tuning dlib shape predictor hyperparameters to balance speed, accuracy, and model size

📖 In this tutorial, you will learn how to optimally tune dlib’s shape predictor hyperparameters and options to obtain a shape predictor that balances speed, accuracy, and model size. Today is part two in our two-part series on training custom shape…...

🏷️ #dlib #FaceApplications #FacialLandmarks #ShapePredictors #Tutorials
Training a custom dlib shape predictor

📖 In this tutorial, you will learn how to train your own custom dlib shape predictor. You’ll then learn how to take your trained dlib shape predictor and use it to predict landmarks on input images and real-time video streams. Today…...

🏷️ #dlib #FaceApplications #FacialLandmarks #ShapePredictors #Tutorials
1
Multi-object tracking with dlib

📖 In this tutorial, you will learn how to use the dlib library to efficiently track multiple objects in real-time video. So far in this series on object tracking we have learned how to: Track single objects with OpenCV Track multiple…...

🏷️ #dlib #ObjectTracking #Tutorials
Object tracking with dlib

📖 This tutorial will teach you how to perform object tracking using dlib and Python. After reading today’s blog post you will be able to track objects in real-time video with dlib. A couple months ago we discussed centroid tracking, a…...

🏷️ #dlib #ObjectTracking #Tutorials