merve HF staff commited on
Commit
87c113f
·
1 Parent(s): 015bc7e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -1,3 +1,11 @@
1
  import streamlit as st
2
 
3
- st.header("Ways to Improve Your Conversational Agents using 🤗 Hugging Face")
 
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
 
3
+ st.header("Ways to Improve Your Conversational Agents using 🤗 Hugging Face")
4
+
5
+ st.write("There are many ways to improve your conversational agents using language models. In this blog post, I want to go through couple of know-hows I've learnt during my time as a machine learning engineer making chatbots for living.")
6
+
7
+ st.subheader("Data Augmentation with Generative Models")
8
+ st.write("There are cases where you will not be allowed to keep data, you will have to start from scratch or you will have very little amount of data. We'll go over two use cases and see how to tackle them.")
9
+ st.write("Imagine you're making a chatbot that will answer very general questions about emergency situations at home. If you have very little amount of data, you could actually augment it through language models. There are regex based tools you can use but they tend to create bias due to repetitive patterns, so it's better to use language models for this case. A good model to use is a generative model fine-tuned on Quora Question Pairs dataset.")
10
+ st.subheader("Add Personas to Your Conversational Agent using GPT-2")
11
+ st.subheader("Multilingual Models using Translation Models")