Google Duplex: An AI System for Accomplishing Real World Tasks Over the Phone

Google Duplex: An AI System for Accomplishing Real World Tasks Over the Phone

  • May 9, 2018
Table of Contents

Google Duplex: An AI System for Accomplishing Real World Tasks Over the Phone

At the core of Duplex is a recurrent neural network (RNN) designed to cope with these challenges, built using TensorFlow Extended (TFX). To obtain its high precision, we trained Duplex’s RNN on a corpus of anonymized phone conversation data. The network uses the output of Google’s automatic speech recognition (ASR) technology, as well as features from the audio, the history of the conversation, the parameters of the conversation (e.g. the desired service for an appointment, or the current time of day) and more.

We trained our understanding model separately for each task, but leveraged the shared corpus across tasks. Finally, we used hyperparameter optimization from TFX to further improve the model.

Source: googleblog.com

Share :
comments powered by Disqus

Related Posts

Deploy TensorFlow models

Deploy TensorFlow models

Don’t follow the TensorFlow docs since they explain how to setup a docker image and compile TF serving that takes forever. We can do much better. Some guy made a docker image with everything already compile on it, so we are going to use that one.

Read More
Cutting Edge Deep Learning for Coders, Part 2

Cutting Edge Deep Learning for Coders, Part 2

Welcome to the new 2018 edition of fast.ai’s second 7 week course, Cutting Edge Deep Learning For Coders, Part 2, where you’ll learn the latest developments in deep learning, how to read and implement new academic papers, and how to solve challenging end-to-end problems such as natural language translation. You’ll develop a deep understanding of neural network foundations, the most important recent advances in the fields, and how to implement them in the world’s fastest deep learning libraries, fastai and pytorch. This course contains all new material, so if you’ve already completed the 2017 version, you’ll find plenty here to keep you busy too!

Read More
Turn TensorFlow functions into mathematical notations and diagrams

Turn TensorFlow functions into mathematical notations and diagrams

This is based on some helper classes I started writing, to help my self make less mistakes and understand the code better. It is still work in progress. I want to share the idea to see if it interests others.

Read More