SlideShare ist ein Scribd-Unternehmen logo
1 von 39
Conversational interfaces
Full Day of Applied AI
Morning
Session 1 Intro to Artificial Intelligence
09:00-09:45 Introduction to Applied AI
09:45-10:00 Coffee and break
Session 2 Live Coding a machine learning app
10:00-10:10 Getting your machine ready for machine learning
10:10-10.20 Training and evaluating the model
10.20-10.50 Improving the model
10.50-11.00 Coffee and break
Session 3 Machine learning in the wild - deployment
11:00-11.15 Coding exercise continued
11:15-11:45 Serving your own machine learning model | Code
11:45-11:55 How to solve problems | interactive exercise
11:55-12:00 Q and A
Lunch
12:00-13:00 Lunch
Afternoon
Session 4 Hello World Deep Learning (MNIST)
13:00-13:15 Deep Learning intro
13:00-13.15 Image recognition and CNNs | Talk |
13:15-13:45 Building your own convolutional neural network | Code |
13:45-14:00 Coffee and break
Session 5 Natural Language Processing
14:00-14.30 Natural language processing | Talk |
14:30-14:45 Working with language | Code |
14:45-15:00 Coffee and break
Session 6 Conversational interfaces and Time Series
14:00-14.20 Conversational interfaces
14:20-14:45 Time Series prediction
14:45-15:00 Coffee and break
Session 7 Generative models and style transfer
16:00-16.30 Generative models | Talk |
16:30-16:45 Trying out GANS and style transfer | Code |
Anton Osika AI Research Engineer Sana Labs AB
anton.osika@gmail.com
Birger Moëll Machine Learning Engineer
birger.moell@gmail.com
A new type of interface for most users
Communicating directly with text (or speech) with a computer is a new type of
interface for most users.
AI systems using text to speech (Google Home, Alexa) are built to understand
natural sounding language.
Of course, it’s not nearly new at all (we use it ALL the time). The news is that we
can communicate with machine using speech and text.
Research has shown that people
respond to conversational
technology as they would to
another human
Expect users to be informative.
Because users are cooperative, they often
offer more information than is literally
required of them
Understand how humans
use language
BAD BOT!
Understand how humans
use language
Good bot!
Designing good conversational interfaces is hard.
Almost as hard as talking to people. :-)
Here is google Design Guide with many tips
https://designguidelines.withgoogle.com/conversation/conversation-design/learn-about-conversation.html#learn-about-conversation-
context
There are also more tips on handling errors
https://designguidelines.withgoogle.com/conversation/conversational-components/errors.html#errors-no-match
The overview of conversational interfaces
Intents (what I want) Example, OrderSandwhich
Training phrases (I want to order a sandwhich with Ham)
Entities (what variables the user gives to the agent) (Toppings, Ham,
Cheese)
Responses (how to respond)
Intents
Intents are the wants a user have in
your app.
In our sample app our intents are,
Default Welcome Intent,
UpdateProfile and GetHealthTip.
Examples, BuySandwhich,
BuyShoes, FindRestaurant,
BookHairAppointment,
LearnAboutEskimos, BookRoom,
BookAFlight, BuyFlowers
Training Phrases
Training phrases
Training phrases are ways for our
app to figure out intents (what user
want).
Here our training phrases are
examples of symptoms a user can
in a bodypart.
Entities
Entities
Entities are ways to structure
knowledge within your app.
For our app we have an entity of
body parts with different parts of the
body.
Responses
Responses are what
the bot tells the user.
Contexts
Contexts
With the help of contexts, we can
structure our app to only respond
with specific intents, once a certain
context is activated
The overview of conversational interfaces
Intents (what I want) Example, OrderSandwhich
Training phrases (I want to order a sandwhich with Ham)
Entities (what variables the user gives to the agent) (Toppings, Ham,
Cheese)
Responses (how to respond)
Lets check out some code!
The conversational agent we have built is made using Google Firebase Cloud
Functions in Node.js for handling the logic once an intent is found.
The agent is made in the GUI and can be zipped and uploaded.
https://github.com/BirgerMoell/fulldaydeeplearning/tree/master/chatbot
Example: getHealthTip Response
Example: Extracting getSickTime intent
Example: Firebase function integration
Example: Bot integration, it’s just JSON!
Integration with Webhooks
Using webhooks
we can make our
dialogflow integrate
with a custom url
through a post
request.
This makes it
possible to build
our own agent!
The overview of a conversational interface
Using Amazon Lex
AWS has a similar
system for building
chatbots called Lex.
The drawback is lack of
support in Swedish.
Integration
Once our dialog agent is complete we can use
systems such as Kommunicate to
Integrate it with websites and smoothly
Integrate handoff to a human if the bot
doesn’t understand the user intent.
Integration
Once our dialog agent is complete
we can use systems such as
Kommunicate to Integrate it with
websites and smoothly Integrate
handoff to a human if the bot
doesn’t understand the user intent.
To build your own chat, try out Dialogflow
https://dialogflow.cloud.google.com/
Time series prediction with
Recurrent Neural Networks
Sequential data and RNNs
Language is an example of sequential data – it moves in one direction.
RNNs have revolutionized sequential data modeling.
Examples where they work great include:
● Language translation
● Language generation
● Video understanding
● Playing Starcraft
Attention has become more popular for many NLP tasks, but RNNs are still
state-of-the-art for pure time series tasks with long input sequences.
Long Short Term Memory (LSTM) networks
Long Short Term Memory (LSTM) networks
Human brains are Recurrent Networks
Your mind can been seen as an astoundingly
large recurrent neural network where a part of
the input for the next time step is the previous
timestep. Memory serves the function of
changing the state of mind.
You are your state and your state largely
determines the state at the next timestep.
Trying out LSTMs
LSTMs can be used for many different tasks
In the colab notebooks we have some examples of using LSTMs
Using Google you can find other examples such as:
● Sales forecasting
● Power grid predictions
● Sentiment analysis
● Recommendation systems
Trying out LSTMs
Open up the notebooks in Time Series Prediction with Deep Learning and follow
the explanations.
ML / Deep Learning lecture
Birger Moëll Machine Learning Engineer Ayond AB
birger.moell@ayond.se
Morning
Session 1 Intro to deep learning
09:00-09:30 Introduction to Machine learning / Deep Learning | Talk |
09:30-09:45 Getting your machines ready for machine learning | Code |
09:45-10:00 Coffee and break
Session 2 Hello world
10:00-10:15 Hello World in Machine Learning (MNIST) | Talk |
10:15-10:45 Running your own MNIST | Code |
10:45-11:00 Coffee and break
Session 3 Feedforward networks
11:00-11.15 Feedforward Neural Networks | Talk |
11.15-11.45 Building your own feedforward neural network | Code |
11:45-12:00 Q and A | Interactive
Lunch
12:00-13:00 Lunch
Afternoon
Session 4 Image recognition
13:00-13.15 Image recognition and CNNs | Talk |
13:15-13:45 Building your own convolutional neural network | Code |
13:45-14:00 Coffee and break
Session 5 Natural Language Processing
14:00-14.15 Natural language processing | Talk |
14:15-14:45 Working with language | Code |
14:45-15:00 Coffee and break
Session 6-7 Generative models and time series
15:00-15.15 Generative models and LSTMs | Talk |
15:15-15:45 Trying out GANS and time series | Code |
15:45-16:00 Coffee and break
Session 8 Machine learning in the wild / Deployment
16:00-16.15 Machine learning in the wild | Talk |
16:15-16:45 Serving your own machine learning model | Code |
16:45-17:00 Q and A | Interactive

Weitere ähnliche Inhalte

Ähnlich wie Conversational interfaces and time series prediction

OK Google, it's time to bot! - Hadar Franco & Stav Levi
OK Google, it's time to bot! - Hadar Franco & Stav LeviOK Google, it's time to bot! - Hadar Franco & Stav Levi
OK Google, it's time to bot! - Hadar Franco & Stav Levi
Hadar Franco
 
Mobile Learning: The Low-Hanging Fruit
Mobile Learning: The Low-Hanging FruitMobile Learning: The Low-Hanging Fruit
Mobile Learning: The Low-Hanging Fruit
Enspire Learning
 

Ähnlich wie Conversational interfaces and time series prediction (20)

Live coding a machine learning app
Live coding a machine learning appLive coding a machine learning app
Live coding a machine learning app
 
Natural language processing
Natural language processingNatural language processing
Natural language processing
 
Machine learning in the wild deployment
Machine learning in the wild deploymentMachine learning in the wild deployment
Machine learning in the wild deployment
 
OK Google, it's time to bot! - Hadar Franco & Stav Levi
OK Google, it's time to bot! - Hadar Franco & Stav LeviOK Google, it's time to bot! - Hadar Franco & Stav Levi
OK Google, it's time to bot! - Hadar Franco & Stav Levi
 
Ok google, it's time to bot! - Hadar Franco, Albert + Stav Levi, Monday
Ok google, it's time to bot! - Hadar Franco, Albert + Stav Levi, MondayOk google, it's time to bot! - Hadar Franco, Albert + Stav Levi, Monday
Ok google, it's time to bot! - Hadar Franco, Albert + Stav Levi, Monday
 
Rsqrd AI: Making Conversational AI Work for Everybody
Rsqrd AI: Making Conversational AI Work for EverybodyRsqrd AI: Making Conversational AI Work for Everybody
Rsqrd AI: Making Conversational AI Work for Everybody
 
MongoDB World 2018: Building Intelligent Apps with MongoDB & Google Cloud
MongoDB World 2018: Building Intelligent Apps with MongoDB & Google CloudMongoDB World 2018: Building Intelligent Apps with MongoDB & Google Cloud
MongoDB World 2018: Building Intelligent Apps with MongoDB & Google Cloud
 
Voice Tech TO #1
Voice Tech TO #1Voice Tech TO #1
Voice Tech TO #1
 
Keynote- We're going wrong: Choosing the web's future. Peter Paul Koch
Keynote- We're going wrong: Choosing the web's future. Peter Paul KochKeynote- We're going wrong: Choosing the web's future. Peter Paul Koch
Keynote- We're going wrong: Choosing the web's future. Peter Paul Koch
 
Mobile Learning: The Low-Hanging Fruit
Mobile Learning: The Low-Hanging FruitMobile Learning: The Low-Hanging Fruit
Mobile Learning: The Low-Hanging Fruit
 
Form Function Class 6, Manila, Philippines 14/11/2015
Form Function Class 6, Manila, Philippines 14/11/2015Form Function Class 6, Manila, Philippines 14/11/2015
Form Function Class 6, Manila, Philippines 14/11/2015
 
Beginners guide-to-coding-updated
Beginners guide-to-coding-updatedBeginners guide-to-coding-updated
Beginners guide-to-coding-updated
 
Conversational experience by Systango
Conversational experience by SystangoConversational experience by Systango
Conversational experience by Systango
 
How To Do Kick-Ass Software Development
How To Do Kick-Ass Software DevelopmentHow To Do Kick-Ass Software Development
How To Do Kick-Ass Software Development
 
sitNL 2019 - SAP Conversational AI
sitNL 2019 - SAP Conversational AIsitNL 2019 - SAP Conversational AI
sitNL 2019 - SAP Conversational AI
 
Info Session GDSC USICT
Info Session GDSC USICTInfo Session GDSC USICT
Info Session GDSC USICT
 
Roadmap to Development
Roadmap to DevelopmentRoadmap to Development
Roadmap to Development
 
Fine tune and deploy Hugging Face NLP models
Fine tune and deploy Hugging Face NLP modelsFine tune and deploy Hugging Face NLP models
Fine tune and deploy Hugging Face NLP models
 
How to Internationalize Products by fmr Condé Nast Int. PM
How to Internationalize Products by fmr Condé Nast Int. PMHow to Internationalize Products by fmr Condé Nast Int. PM
How to Internationalize Products by fmr Condé Nast Int. PM
 
Conversational AI: What's New?
Conversational AI: What's New?Conversational AI: What's New?
Conversational AI: What's New?
 

Kürzlich hochgeladen

IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 

Kürzlich hochgeladen (20)

From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdf
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 

Conversational interfaces and time series prediction

  • 2. Full Day of Applied AI Morning Session 1 Intro to Artificial Intelligence 09:00-09:45 Introduction to Applied AI 09:45-10:00 Coffee and break Session 2 Live Coding a machine learning app 10:00-10:10 Getting your machine ready for machine learning 10:10-10.20 Training and evaluating the model 10.20-10.50 Improving the model 10.50-11.00 Coffee and break Session 3 Machine learning in the wild - deployment 11:00-11.15 Coding exercise continued 11:15-11:45 Serving your own machine learning model | Code 11:45-11:55 How to solve problems | interactive exercise 11:55-12:00 Q and A Lunch 12:00-13:00 Lunch Afternoon Session 4 Hello World Deep Learning (MNIST) 13:00-13:15 Deep Learning intro 13:00-13.15 Image recognition and CNNs | Talk | 13:15-13:45 Building your own convolutional neural network | Code | 13:45-14:00 Coffee and break Session 5 Natural Language Processing 14:00-14.30 Natural language processing | Talk | 14:30-14:45 Working with language | Code | 14:45-15:00 Coffee and break Session 6 Conversational interfaces and Time Series 14:00-14.20 Conversational interfaces 14:20-14:45 Time Series prediction 14:45-15:00 Coffee and break Session 7 Generative models and style transfer 16:00-16.30 Generative models | Talk | 16:30-16:45 Trying out GANS and style transfer | Code | Anton Osika AI Research Engineer Sana Labs AB anton.osika@gmail.com Birger Moëll Machine Learning Engineer birger.moell@gmail.com
  • 3.
  • 4. A new type of interface for most users Communicating directly with text (or speech) with a computer is a new type of interface for most users. AI systems using text to speech (Google Home, Alexa) are built to understand natural sounding language. Of course, it’s not nearly new at all (we use it ALL the time). The news is that we can communicate with machine using speech and text.
  • 5. Research has shown that people respond to conversational technology as they would to another human
  • 6. Expect users to be informative. Because users are cooperative, they often offer more information than is literally required of them
  • 7. Understand how humans use language BAD BOT!
  • 8. Understand how humans use language Good bot!
  • 9. Designing good conversational interfaces is hard. Almost as hard as talking to people. :-) Here is google Design Guide with many tips https://designguidelines.withgoogle.com/conversation/conversation-design/learn-about-conversation.html#learn-about-conversation- context There are also more tips on handling errors https://designguidelines.withgoogle.com/conversation/conversational-components/errors.html#errors-no-match
  • 10. The overview of conversational interfaces Intents (what I want) Example, OrderSandwhich Training phrases (I want to order a sandwhich with Ham) Entities (what variables the user gives to the agent) (Toppings, Ham, Cheese) Responses (how to respond)
  • 11. Intents Intents are the wants a user have in your app. In our sample app our intents are, Default Welcome Intent, UpdateProfile and GetHealthTip. Examples, BuySandwhich, BuyShoes, FindRestaurant, BookHairAppointment, LearnAboutEskimos, BookRoom, BookAFlight, BuyFlowers
  • 12. Training Phrases Training phrases Training phrases are ways for our app to figure out intents (what user want). Here our training phrases are examples of symptoms a user can in a bodypart.
  • 13. Entities Entities Entities are ways to structure knowledge within your app. For our app we have an entity of body parts with different parts of the body.
  • 14. Responses Responses are what the bot tells the user.
  • 15. Contexts Contexts With the help of contexts, we can structure our app to only respond with specific intents, once a certain context is activated
  • 16. The overview of conversational interfaces Intents (what I want) Example, OrderSandwhich Training phrases (I want to order a sandwhich with Ham) Entities (what variables the user gives to the agent) (Toppings, Ham, Cheese) Responses (how to respond)
  • 17. Lets check out some code! The conversational agent we have built is made using Google Firebase Cloud Functions in Node.js for handling the logic once an intent is found. The agent is made in the GUI and can be zipped and uploaded. https://github.com/BirgerMoell/fulldaydeeplearning/tree/master/chatbot
  • 21. Example: Bot integration, it’s just JSON!
  • 22. Integration with Webhooks Using webhooks we can make our dialogflow integrate with a custom url through a post request. This makes it possible to build our own agent!
  • 23. The overview of a conversational interface
  • 24. Using Amazon Lex AWS has a similar system for building chatbots called Lex. The drawback is lack of support in Swedish.
  • 25. Integration Once our dialog agent is complete we can use systems such as Kommunicate to Integrate it with websites and smoothly Integrate handoff to a human if the bot doesn’t understand the user intent.
  • 26. Integration Once our dialog agent is complete we can use systems such as Kommunicate to Integrate it with websites and smoothly Integrate handoff to a human if the bot doesn’t understand the user intent.
  • 27. To build your own chat, try out Dialogflow https://dialogflow.cloud.google.com/
  • 28. Time series prediction with Recurrent Neural Networks
  • 29. Sequential data and RNNs Language is an example of sequential data – it moves in one direction. RNNs have revolutionized sequential data modeling. Examples where they work great include: ● Language translation ● Language generation ● Video understanding ● Playing Starcraft Attention has become more popular for many NLP tasks, but RNNs are still state-of-the-art for pure time series tasks with long input sequences.
  • 30. Long Short Term Memory (LSTM) networks
  • 31. Long Short Term Memory (LSTM) networks
  • 32.
  • 33.
  • 34.
  • 35.
  • 36. Human brains are Recurrent Networks Your mind can been seen as an astoundingly large recurrent neural network where a part of the input for the next time step is the previous timestep. Memory serves the function of changing the state of mind. You are your state and your state largely determines the state at the next timestep.
  • 37. Trying out LSTMs LSTMs can be used for many different tasks In the colab notebooks we have some examples of using LSTMs Using Google you can find other examples such as: ● Sales forecasting ● Power grid predictions ● Sentiment analysis ● Recommendation systems
  • 38. Trying out LSTMs Open up the notebooks in Time Series Prediction with Deep Learning and follow the explanations.
  • 39. ML / Deep Learning lecture Birger Moëll Machine Learning Engineer Ayond AB birger.moell@ayond.se Morning Session 1 Intro to deep learning 09:00-09:30 Introduction to Machine learning / Deep Learning | Talk | 09:30-09:45 Getting your machines ready for machine learning | Code | 09:45-10:00 Coffee and break Session 2 Hello world 10:00-10:15 Hello World in Machine Learning (MNIST) | Talk | 10:15-10:45 Running your own MNIST | Code | 10:45-11:00 Coffee and break Session 3 Feedforward networks 11:00-11.15 Feedforward Neural Networks | Talk | 11.15-11.45 Building your own feedforward neural network | Code | 11:45-12:00 Q and A | Interactive Lunch 12:00-13:00 Lunch Afternoon Session 4 Image recognition 13:00-13.15 Image recognition and CNNs | Talk | 13:15-13:45 Building your own convolutional neural network | Code | 13:45-14:00 Coffee and break Session 5 Natural Language Processing 14:00-14.15 Natural language processing | Talk | 14:15-14:45 Working with language | Code | 14:45-15:00 Coffee and break Session 6-7 Generative models and time series 15:00-15.15 Generative models and LSTMs | Talk | 15:15-15:45 Trying out GANS and time series | Code | 15:45-16:00 Coffee and break Session 8 Machine learning in the wild / Deployment 16:00-16.15 Machine learning in the wild | Talk | 16:15-16:45 Serving your own machine learning model | Code | 16:45-17:00 Q and A | Interactive

Hinweis der Redaktion

  1. Have narrow dialog trees where users can quickly solve their problems.