Spaces:
Runtime error
Runtime error
Marvin M. Agüero-Torales commited on
Commit ·
de5036b
1
Parent(s): 848129c
adding disclaimer
Browse files
app.py
CHANGED
|
@@ -69,6 +69,7 @@ if __name__ == '__main__':
|
|
| 69 |
This is an example of an auto-complete approach where the next token suggested based on users's history Keyword match & Semantic similarity of users's history (log).
|
| 70 |
The next token is predicted per probability and a weight if it is appeared in keyword user's history or there is a similarity to semantic user's history.
|
| 71 |
**Forked from [mbahrami/Auto-Complete_Semantic](https://huggingface.co/spaces/mbahrami/Auto-Complete_Semantic).**
|
|
|
|
| 72 |
""")
|
| 73 |
history_keyword_text = st.text_input("Enter users's history <Keywords Match> (optional, i.e., 'Premio Cervantes')", value="")
|
| 74 |
|
|
|
|
| 69 |
This is an example of an auto-complete approach where the next token suggested based on users's history Keyword match & Semantic similarity of users's history (log).
|
| 70 |
The next token is predicted per probability and a weight if it is appeared in keyword user's history or there is a similarity to semantic user's history.
|
| 71 |
**Forked from [mbahrami/Auto-Complete_Semantic](https://huggingface.co/spaces/mbahrami/Auto-Complete_Semantic).**
|
| 72 |
+
**Disclaimer:** The behind idea is to compare our models that included Guarani during pre-training vs. the models that do not have saw it. That is, the multilingual ones: XLM-RoBERTa, mBERT and Spanish BERTs (BETO and PLAN-TL-RoBERTa). Additionally, we include English models: BERT and RoBERTa, for comparison reasons.
|
| 73 |
""")
|
| 74 |
history_keyword_text = st.text_input("Enter users's history <Keywords Match> (optional, i.e., 'Premio Cervantes')", value="")
|
| 75 |
|