merve HF staff commited on
Commit
005e1dc
·
1 Parent(s): 2ed2c8b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -2
app.py CHANGED
@@ -1,5 +1,14 @@
1
  import streamlit as st
2
  from transformers import pipeline
 
 
 
 
 
 
 
 
 
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 will walk you through a couple of tricks that will improve your conversational agent. 👾")
@@ -26,10 +35,14 @@ st.image("./Translation.png")
26
  st.write("Your English intent classification model will be between these two models, your German to English model will translate the input to English and the output will go through the intent classification model, which will classify intent and select appropriate response (which is currently in English). The response will be translated back to German, which you can do in advance and do proofreading with a native speaker or directly pass it to a from English to German language model. For this use case, I highly recommend specific translation models instead of using sequence-to-sequence multilingual models like T5. ")
27
 
28
 
29
- translator = pipeline("translation", model="Helsinki-NLP/opus-mt-en-fr")
 
 
 
 
30
  default_value_tr = "How are you?"
31
  input = st.text_input("Input in English", default_value_tr, key = "translation")
32
- outputs = translator(input)
33
  st.write("Translated Example:")
34
  st.write(outputs[0]["translation_text"])
35
  st.write("You can check out this [link](https://huggingface.co/models?pipeline_tag=translation&sort=downloads&search=helsinki-nlp) for available translation models.")
 
1
  import streamlit as st
2
  from transformers import pipeline
3
+
4
+ import requests
5
+
6
+ def query(payload, model_id, api_token):
7
+ headers = {"Authorization": f"Bearer {api_token}"}
8
+ API_URL = f"https://api-inference.huggingface.co/models/{model_id}"
9
+ response = requests.post(API_URL, headers=headers, json=payload)
10
+ return response.json()
11
+
12
  st.header("Ways to Improve Your Conversational Agents using 🤗 Hugging Face")
13
 
14
  st.write("There are many ways to improve your conversational agents using language models. In this blog post, I will walk you through a couple of tricks that will improve your conversational agent. 👾")
 
35
  st.write("Your English intent classification model will be between these two models, your German to English model will translate the input to English and the output will go through the intent classification model, which will classify intent and select appropriate response (which is currently in English). The response will be translated back to German, which you can do in advance and do proofreading with a native speaker or directly pass it to a from English to German language model. For this use case, I highly recommend specific translation models instead of using sequence-to-sequence multilingual models like T5. ")
36
 
37
 
38
+
39
+
40
+ model_id = "Helsinki-NLP/opus-mt-en-fr"
41
+
42
+ #translator = pipeline("translation", model="Helsinki-NLP/opus-mt-en-fr")
43
  default_value_tr = "How are you?"
44
  input = st.text_input("Input in English", default_value_tr, key = "translation")
45
+ outputs = query(input, model_id, api_token)
46
  st.write("Translated Example:")
47
  st.write(outputs[0]["translation_text"])
48
  st.write("You can check out this [link](https://huggingface.co/models?pipeline_tag=translation&sort=downloads&search=helsinki-nlp) for available translation models.")