Book Image

Mobile Artificial Intelligence Projects

By : Karthikeyan NG, Arun Padmanabhan, Matt Cole
Book Image

Mobile Artificial Intelligence Projects

By: Karthikeyan NG, Arun Padmanabhan, Matt Cole

Overview of this book

We’re witnessing a revolution in Artificial Intelligence, thanks to breakthroughs in deep learning. Mobile Artificial Intelligence Projects empowers you to take part in this revolution by applying Artificial Intelligence (AI) techniques to design applications for natural language processing (NLP), robotics, and computer vision. This book teaches you to harness the power of AI in mobile applications along with learning the core functions of NLP, neural networks, deep learning, and mobile vision. It features a range of projects, covering tasks such as real-estate price prediction, recognizing hand-written digits, predicting car damage, and sentiment analysis. You will learn to utilize NLP and machine learning algorithms to make applications more predictive, proactive, and capable of making autonomous decisions with less human input. In the concluding chapters, you will work with popular libraries, such as TensorFlow Lite, CoreML, and PyTorch across Android and iOS platforms. By the end of this book, you will have developed exciting and more intuitive mobile applications that deliver a customized and more personalized experience to users.
Table of Contents (12 chapters)
6
PyTorch Experiments on NLP and RNN
7
TensorFlow on Mobile with Speech-to-Text with the WaveNet Model
8
Implementing GANs to Recognize Handwritten Digits

Building the ML model using scikit–learn

In this section, we will build our own model. There are existing datasets available that are related to Twitter feed data on the topic of product and movie reviews. You can pick a dataset that suits you; in this chapter, we will pick a dataset that has customer reviews.

A dataset that contains both positive and negative reviews of customers can be found at http://boston.lti.cs.cmu.edu/classes/95-865-K/HW/HW3/. You can download the dataset from the following link: http://boston.lti.cs.cmu.edu/classes/95-865-K/HW/HW3/epinions3.zip.

The aforementioned dataset has both positive and negative feedback about a product, as shown in the following screenshot:

We will train the dataset using the scikit-learn pipeline and LinearSVC. Let's take a closer look at both of these.

...