File size: 1,455 Bytes
83659f2
 
 
 
 
 
 
 
 
 
 
3c31e1c
83659f2
 
 
 
 
75fe8c9
83659f2
 
 
 
 
 
 
 
 
b3a6a4b
83659f2
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import streamlit as st
import pandas as pd

from transformers import pipeline

@st.cache(allow_output_mutation=True)
def get_model(model):
	return pipeline("fill-mask", model=model, top_k=100)#seto maximum of tokens to be retrieved after each inference to model

HISTORY_WEIGHT = 100 # set history weight (if found any keyword from history, it will priorities based on its weight)

st.caption("This is a simple auto-completion where the next token is predicted per probability and a weigh if appears in user's history")

history_keyword_text = st.text_input("Enter users's history keywords (optional, i.e., 'Gates')", value="Gates")

text = st.text_input("Enter a text for auto completion...", value='Where is Bill')

model = st.selectbox("choose a model", ["roberta-base", "bert-base-uncased"])

data_load_state = st.text('Loading model...')
nlp = get_model(model)

if text:
    data_load_state = st.text('Inference to model...')
    result = nlp(text+' '+nlp.tokenizer.mask_token)
    data_load_state.text('')
    for index, r in enumerate(result):
        if r['token_str'].lower().strip() in history_keyword_text.lower().strip() and len(r['token_str'].lower().strip())>1:
            #found from history, then increase the score of tokens
            result[index]['score']*=HISTORY_WEIGHT
            
    #sort the results        
    df=pd.DataFrame(result).sort_values(by='score', ascending=False)
    #show the results as a table
    st.table(df)