A REST service that processes invoices scanned in Python-In this post, I suggest you create a web service (RESTFul) in Python which will retrieve an image (JPEG) to analyze and process it in order to return the constituent elements.
Publish your Machine Learning models with Flask!-In this article we will see how to install and especially use the Python Flask micro-framework. very useful for publishing your Machine learning models in REST!
SQLite… SQL in a file!-Discover the SQLite database in this article, but above all, see how easy it is to use it through Python and Java!
The Web Scraping-Web Scraping is a technique that is often essential to enrich your raw data. Find out how to simply write Python scripts to suck data from a website.
Managing location data-In this article, learn how to easily use, cleanse, and visualize geo-localized data with Python.
Access Hive & HDFS via PySpark-Discover in this tutorial how to recover your data via Python (PySpark) in Hadoop HDFS and Hive.
YOLO (Part 3) Non Maxima Suppression (NMS)-In my previous articles on YOLO we saw how to use this network ... but when we apply this algorithm on complex images we quickly see that multiple detections are made for the same objects. We will see in this article how to remove these duplicate frames with the so-called NMS technique.
YOLO (Part 1) Introduction with Darknet-We will see in this article, how with the YOLO neural network we can very simply detect several objects in a photo. The objective is not to go into the details of the implementation of this neural network (much more complex than a simple sequential CNN) but rather to show how to use the implementation which was carried out in C ++ and which is called Darknet.
Transfer Learning with VGG-In this article we will discuss the concept of Transfer Learning ... or how to avoid redoing long and consuming learning by partially reusing a pre-trained neural network. To do this we will use a network which is the reference in the matter: VGG-Net (vgg16).
Image processing (part 6) Filters & Convolution-We will discuss in this post a kind of filters widely used by all images software (such as Photoshop or Gimp). In fact and to go further (without "sploiling" the following posts either) this convolution principle will also be widely used by neural networks (Deep Learning) ... but we will see that later. First of all, let's focus on the principle of these convolution filters.
Image processing (part 4) Image Transformations-We will see in this article how to perform some basic transformations on images with scikit-image such as rotating, and changing image scale and size.
Image processing (part 3) Image Thresholding-In this article (which is the 3rd episode of the image processing series) we will see how to use the image histograms we discussed in article 2 to do some basic editing.
Localization
Managing location data-In this article, learn how to easily use, cleanse, and visualize geo-localized data with Python.
Texts & Strings
Introduction to nlpcloud.io-NLPCloud.io is an API for easily using NLP in production. The API is based on the pre-trained models of spaCy and Hugging Face (based on transformers). In and article we will see how to use this API in a few lines ...
Fake News ?-I propose in this article to create a convolutional neural network to do NLP, and for the data I will use a dataset that you can simply find in the Kaggle datasets: FrenchFakeNewsDetector. You have understood the objective is twofold: on the one hand to see how we can use the convolution technique with vectors (1 dimension instead of images with 2+ dimensions) and on the other hand to do NLP with data in French.
Retrieve historical meteo data-For an analysis I wanted to do and after several searches, I realized that it was not that easy to get historical weather data. Of course, as i'm french I went to Meteo France Open Data and tried other open data site. But nothing really usable or it seems without a paid subscription. So I decided to retrieve them through a Python program and the scraping technique.
Sentiment analysis on movie reviews-The purpose of this article is to show through a concrete and French case the method to perform a sentiment analysis with Python.
KYC check with Blue Prism Decipher IDP-Discover in a short demo how Blur Prism Decipher IDP allows you to easily automate the classification and then the extraction of data from unstructured documents (scanned for example).
NLP with Python NLTK-Find out in this article how to do NLP simply with Python and NLTK.
Speech recognition with Python & Google-In this article, which is above all practical, we will see how with your computer and Python to capture vocal information and transcribe it into text. Want to create your own digital assistant? why not, here's how to start it anyway ...