fbpx

Searched for

524 results found
classification
Area Under the Curve and Beyond with Integrated Discrimination Improvement and Net Reclassification
TLDR AUC is a good starting metric when comparing the performance of two models but it does not always tell the whole story NRI looks at the new models ability to correctly reclassify cancers and benigns and should be used alongside AUC IDI quantifies improvement of the slopes of the discrimination curves and... Read more
How to Train a Classification Model with TensorFlow in 10 Minutes
Deep learning is everywhere. From sales forecasting to segmenting skin diseases on image data — there’s nothing deep learning algorithms can’t do, given quality data. If deep learning and TensorFlow are new to you, you’re in the right place. This article will show you the entire process of building a classification model... Read more
Automated Data Labeling for Text Classification
For machine learning (ML) practitioners, one of the most important and typical tasks is full-text classification (FTC), a technique where you assign a set of categories or tags to an entire row of text. The way you do this apparently simple task has a direct impact on how we build... Read more
Area Under the Curve and Beyond with Integrated Discrimination Improvement and Net Reclassification
TLDR AUC is a good starting metric when comparing the performance of two models but it does not always tell the whole story NRI looks at the new models ability to correctly reclassify cancers and benigns and should be used alongside AUC IDI quantifies improvement of the slopes of the discrimination curves and... Read more
Paving the Road to Facial Classification Accuracy
Facial classification is one of the most promising and controversial machine learning use cases. The technology has considerable potential in areas like security, but it also carries substantial privacy and bias concerns. Relying on racial recognition models that aren’t accurate can lead to severe consequences. Facial recognition has come a... Read more
Creating Spectrograms and Scaleograms for Signal Classification
In this post, I’ll explain how to convert time-series signals into spectrograms and scaleograms, which are image representations of those signals that contain both frequency and time information. In a future post, we’ll use the images created here to classify the signals. I’ll explain the intuition and math used to... Read more
State-of-the-Art Text Classification Made Easy: AdaptNLP
This article discusses AdaptNLP. In Natural Language Processing (NLP), language models such as ULMFiT, BERT, and GPT have become the foundation of many solutions for common NLP tasks. The benefit of language models is their ability to be pre-trained with a general understanding of language, such that users can fine-tune... Read more
Deploying a Text Classification Model in Python
This article is the last of a series in which I cover the whole process of developing a machine learning project. If you have not read the previous two articles, I strongly encourage you to do it here and here. The project involves the creation of a real-time web application that gathers data from several newspapers and... Read more
24 Evaluation Metrics for Binary Classification (And When to Use Them)
 Not sure which evaluation metric you should choose for your binary classification problem? After reading this blog post you should have a good idea. [Related Article: Best Machine Learning Research of 2019] You will learn about a bunch of common and lesser-known evaluation metrics and charts to understand how to... Read more
Text Classification in Python
This article is the first of a series in which I will cover the whole process of developing a machine learning project. This one focuses on training a supervised learning text classification model in Python. The motivation behind writing these articles is the following: as a learning data scientist who has been... Read more