Search results for "Natural Language Processing"

probability

Where Does Machine Learning Fit In?

Machine Learning is a multidisciplinary field and it can be very confusing when you are getting started to differentiate machine learning from the closely related fields of Artificial Intelligence and Data Mining. In this post you will learn about those fields that are related to machine learning. Specifically, you will learn about the boundaries of […]

Continue Reading
Face Detection

Practical Machine Learning Problems

What is Machine Learning? We can read authoritative definitions of machine learning, but really, machine learning is defined by the problem being solved. Therefore the best way to understand machine learning is to look at some example problems. In this post we will first look at some well known and understood examples of machine learning […]

Continue Reading

About

Hello, my name is Jason Brownlee, PhD. I’m a father, husband, professional developer, and machine learning practitioner. I have a Masters and PhD degree in Artificial Intelligence and I’ve worked on machine learning systems for defense, startups, and severe weather forecasting. I started this community for two main reasons: 1) Because I find machine learning […]

Continue Reading
Depiction of CNN Model for Accelerompter Data

Deep Learning Models for Human Activity Recognition

Human activity recognition, or HAR, is a challenging time series classification task. It involves predicting the movement of a person based on sensor data and traditionally involves deep domain expertise and methods from signal processing to correctly engineer features from the raw data in order to fit a machine learning model. Recently, deep learning methods […]

Continue Reading
Gentle Introduction to Making Predictions with Sequences

Making Predictions with Sequences

Sequence prediction is different from other types of supervised learning problems. The sequence imposes an order on the observations that must be preserved when training models and making predictions. Generally, prediction problems that involve sequence data are referred to as sequence prediction problems, although there are a suite of problems that differ based on the […]

Continue Reading
A Gentle Introduction to Long Short-Term Memory Networks by the Experts

A Gentle Introduction to Long Short-Term Memory Networks by the Experts

Long Short-Term Memory (LSTM) networks are a type of recurrent neural network capable of learning order dependence in sequence prediction problems. This is a behavior required in complex problem domains like machine translation, speech recognition, and more. LSTMs are a complex area of deep learning. It can be hard to get your hands around what […]

Continue Reading