Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ st.write("There are cases where you will not be allowed to keep data, you will h
|
|
9 |
st.write("Imagine you're making a chatbot that will answer very general questions about emergency situations at home.")
|
10 |
st.write("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. This dataset consists of question pairs that are paraphrase of one another, and T5 can generate a paraphrased question given a source question.")
|
11 |
|
12 |
-
generator = pipeline("text2text-generation" model = "mrm8488/t5-small-finetuned-quora-for-paraphrasing")
|
13 |
default_value = "How to put out a grease fire?"
|
14 |
sent = st.text_area("Input", default_value, height = 275)
|
15 |
num_return_sequences = st.sidebar.number_input('Number of Sequences to be Generated', min_value=1, max_value=5, value=1, step=1)
|
|
|
9 |
st.write("Imagine you're making a chatbot that will answer very general questions about emergency situations at home.")
|
10 |
st.write("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. This dataset consists of question pairs that are paraphrase of one another, and T5 can generate a paraphrased question given a source question.")
|
11 |
|
12 |
+
generator = pipeline("text2text-generation", model = "mrm8488/t5-small-finetuned-quora-for-paraphrasing")
|
13 |
default_value = "How to put out a grease fire?"
|
14 |
sent = st.text_area("Input", default_value, height = 275)
|
15 |
num_return_sequences = st.sidebar.number_input('Number of Sequences to be Generated', min_value=1, max_value=5, value=1, step=1)
|