Add self-learning chatbots presentation
This commit is contained in:
parent
2002912b0f
commit
7a4dd56e1d
6 changed files with 126 additions and 2 deletions
|
@ -27,6 +27,10 @@
|
|||
Here you can find all my previous posts:
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="./posts/self-learning-chatbots-destygo.html">Destygo: Towards Self-Learning Chatbots</a> - April 6, 2019
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="./posts/ginibre-ensemble.html">Random matrices from the Ginibre ensemble</a> - March 20, 2019
|
||||
</li>
|
||||
|
|
|
@ -8,8 +8,28 @@
|
|||
<name>Dimitri Lozeve</name>
|
||||
<email>dimitri+web@lozeve.com</email>
|
||||
</author>
|
||||
<updated>2019-03-20T00:00:00Z</updated>
|
||||
<updated>2019-04-06T00:00:00Z</updated>
|
||||
<entry>
|
||||
<title>Destygo: Towards Self-Learning Chatbots</title>
|
||||
<link href="https://www.lozeve.com/posts/self-learning-chatbots-destygo.html" />
|
||||
<id>https://www.lozeve.com/posts/self-learning-chatbots-destygo.html</id>
|
||||
<published>2019-04-06T00:00:00Z</published>
|
||||
<updated>2019-04-06T00:00:00Z</updated>
|
||||
<summary type="html"><![CDATA[<article>
|
||||
<section class="header">
|
||||
Posted on April 6, 2019
|
||||
|
||||
</section>
|
||||
<section>
|
||||
<p>Last week I made a presentation at the <a href="https://www.meetup.com/Paris-NLP/">Paris NLP Meetup</a>, on how we implemented self-learning chatbots in production at Destygo.</p>
|
||||
<p>It was fascinating to other people interested in NLP about the technologies and models we deploy at work! It’s always nice to have some feedback about our work, and preparing this talk forced me to take a step back about what we do and rethink it in new interesting ways.</p>
|
||||
<p>Also check out the <a href="https://nlpparis.wordpress.com/2019/03/29/paris-nlp-season-3-meetup-4-at-meilleursagents/">other presentations</a>, one about diachronic (i.e. time-dependent) word embeddings and the other about the different models and the use of Knowledge Bases for Information Retrieval. (This might even give us new ideas to explore…)</p>
|
||||
<p>If you’re interested about exciting applications at the confluence of Reinforcement Learning and NLP, the slides are available <a href="https://drive.google.com/file/d/1aS1NpPxRzsQCsAqoQIVZrdf8R1Y2VKrT/view">here</a>. It includes basic RL theory, how we transposed it to the specific case of conversational agents, the technical and mathematical challenges in implementing self-learning chatbots, and of course plenty of references for further reading if we piqued your interest!</p>
|
||||
</section>
|
||||
</article>
|
||||
]]></summary>
|
||||
</entry>
|
||||
<entry>
|
||||
<title>Random matrices from the Ginibre ensemble</title>
|
||||
<link href="https://www.lozeve.com/posts/ginibre-ensemble.html" />
|
||||
<id>https://www.lozeve.com/posts/ginibre-ensemble.html</id>
|
||||
|
|
|
@ -73,6 +73,10 @@
|
|||
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="./posts/self-learning-chatbots-destygo.html">Destygo: Towards Self-Learning Chatbots</a> - April 6, 2019
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="./posts/ginibre-ensemble.html">Random matrices from the Ginibre ensemble</a> - March 20, 2019
|
||||
</li>
|
||||
|
|
47
_site/posts/self-learning-chatbots-destygo.html
Normal file
47
_site/posts/self-learning-chatbots-destygo.html
Normal file
|
@ -0,0 +1,47 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Dimitri Lozeve - Destygo: Towards Self-Learning Chatbots</title>
|
||||
<link rel="stylesheet" href="../css/default.css" />
|
||||
<link rel="stylesheet" href="../css/syntax.css" />
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML" async></script>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="logo">
|
||||
<a href="../">Dimitri Lozeve</a>
|
||||
</div>
|
||||
<nav>
|
||||
<a href="../">Home</a>
|
||||
<a href="../projects.html">Projects</a>
|
||||
<a href="../archive.html">Archive</a>
|
||||
<a href="../contact.html">Contact</a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main role="main">
|
||||
<h1>Destygo: Towards Self-Learning Chatbots</h1>
|
||||
<article>
|
||||
<section class="header">
|
||||
Posted on April 6, 2019
|
||||
|
||||
</section>
|
||||
<section>
|
||||
<p>Last week I made a presentation at the <a href="https://www.meetup.com/Paris-NLP/">Paris NLP Meetup</a>, on how we implemented self-learning chatbots in production at Destygo.</p>
|
||||
<p>It was fascinating to other people interested in NLP about the technologies and models we deploy at work! It’s always nice to have some feedback about our work, and preparing this talk forced me to take a step back about what we do and rethink it in new interesting ways.</p>
|
||||
<p>Also check out the <a href="https://nlpparis.wordpress.com/2019/03/29/paris-nlp-season-3-meetup-4-at-meilleursagents/">other presentations</a>, one about diachronic (i.e. time-dependent) word embeddings and the other about the different models and the use of Knowledge Bases for Information Retrieval. (This might even give us new ideas to explore…)</p>
|
||||
<p>If you’re interested about exciting applications at the confluence of Reinforcement Learning and NLP, the slides are available <a href="https://drive.google.com/file/d/1aS1NpPxRzsQCsAqoQIVZrdf8R1Y2VKrT/view">here</a>. It includes basic RL theory, how we transposed it to the specific case of conversational agents, the technical and mathematical challenges in implementing self-learning chatbots, and of course plenty of references for further reading if we piqued your interest!</p>
|
||||
</section>
|
||||
</article>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
Site proudly generated by
|
||||
<a href="http://jaspervdj.be/hakyll">Hakyll</a>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
|
@ -7,8 +7,28 @@
|
|||
<description><![CDATA[Recent posts]]></description>
|
||||
<atom:link href="https://www.lozeve.com/rss.xml" rel="self"
|
||||
type="application/rss+xml" />
|
||||
<lastBuildDate>Wed, 20 Mar 2019 00:00:00 UT</lastBuildDate>
|
||||
<lastBuildDate>Sat, 06 Apr 2019 00:00:00 UT</lastBuildDate>
|
||||
<item>
|
||||
<title>Destygo: Towards Self-Learning Chatbots</title>
|
||||
<link>https://www.lozeve.com/posts/self-learning-chatbots-destygo.html</link>
|
||||
<description><![CDATA[<article>
|
||||
<section class="header">
|
||||
Posted on April 6, 2019
|
||||
|
||||
</section>
|
||||
<section>
|
||||
<p>Last week I made a presentation at the <a href="https://www.meetup.com/Paris-NLP/">Paris NLP Meetup</a>, on how we implemented self-learning chatbots in production at Destygo.</p>
|
||||
<p>It was fascinating to other people interested in NLP about the technologies and models we deploy at work! It’s always nice to have some feedback about our work, and preparing this talk forced me to take a step back about what we do and rethink it in new interesting ways.</p>
|
||||
<p>Also check out the <a href="https://nlpparis.wordpress.com/2019/03/29/paris-nlp-season-3-meetup-4-at-meilleursagents/">other presentations</a>, one about diachronic (i.e. time-dependent) word embeddings and the other about the different models and the use of Knowledge Bases for Information Retrieval. (This might even give us new ideas to explore…)</p>
|
||||
<p>If you’re interested about exciting applications at the confluence of Reinforcement Learning and NLP, the slides are available <a href="https://drive.google.com/file/d/1aS1NpPxRzsQCsAqoQIVZrdf8R1Y2VKrT/view">here</a>. It includes basic RL theory, how we transposed it to the specific case of conversational agents, the technical and mathematical challenges in implementing self-learning chatbots, and of course plenty of references for further reading if we piqued your interest!</p>
|
||||
</section>
|
||||
</article>
|
||||
]]></description>
|
||||
<pubDate>Sat, 06 Apr 2019 00:00:00 UT</pubDate>
|
||||
<guid>https://www.lozeve.com/posts/self-learning-chatbots-destygo.html</guid>
|
||||
<dc:creator>Dimitri Lozeve</dc:creator>
|
||||
</item>
|
||||
<item>
|
||||
<title>Random matrices from the Ginibre ensemble</title>
|
||||
<link>https://www.lozeve.com/posts/ginibre-ensemble.html</link>
|
||||
<description><![CDATA[<article>
|
||||
|
|
29
posts/self-learning-chatbots-destygo.org
Normal file
29
posts/self-learning-chatbots-destygo.org
Normal file
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
title: "Destygo: Towards Self-Learning Chatbots"
|
||||
date: 2019-04-06
|
||||
---
|
||||
|
||||
Last week I made a presentation at the
|
||||
[[https://www.meetup.com/Paris-NLP/][Paris NLP Meetup]], on how we
|
||||
implemented self-learning chatbots in production at Destygo.
|
||||
|
||||
It was fascinating to other people interested in NLP about the
|
||||
technologies and models we deploy at work! It's always nice to have
|
||||
some feedback about our work, and preparing this talk forced me to
|
||||
take a step back about what we do and rethink it in new interesting
|
||||
ways.
|
||||
|
||||
Also check out the
|
||||
[[https://nlpparis.wordpress.com/2019/03/29/paris-nlp-season-3-meetup-4-at-meilleursagents/][other
|
||||
presentations]], one about diachronic (i.e. time-dependent) word
|
||||
embeddings and the other about the different models and the use of
|
||||
Knowledge Bases for Information Retrieval. (This might even give us
|
||||
new ideas to explore...)
|
||||
|
||||
If you're interested about exciting applications at the confluence of
|
||||
Reinforcement Learning and NLP, the slides are available
|
||||
[[https://drive.google.com/file/d/1aS1NpPxRzsQCsAqoQIVZrdf8R1Y2VKrT/view][here]]. It
|
||||
includes basic RL theory, how we transposed it to the specific case of
|
||||
conversational agents, the technical and mathematical challenges in
|
||||
implementing self-learning chatbots, and of course plenty of
|
||||
references for further reading if we piqued your interest!
|
Loading…
Add table
Add a link
Reference in a new issue