mbahrami commited on
Commit
1ef9e65
·
1 Parent(s): 005c6a4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -2
app.py CHANGED
@@ -1,3 +1,10 @@
 
 
 
 
 
 
 
1
 
2
  import streamlit as st
3
 
@@ -16,9 +23,11 @@ text = st.text_input("Enter a text for auto completion...", value='Where is Bill
16
 
17
  model = st.selectbox("choose a model", ["roberta-base", "bert-base-uncased", "gpt2", "t5"])
18
 
 
 
 
19
  if text:
20
- data_load_state = st.text('Loading model...')
21
- nlp = get_model(model)
22
  data_load_state = st.text('Inference to model...')
23
  result = nlp(text+' '+nlp.tokenizer.mask_token)
24
  data_load_state.text('')
 
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+ """
4
+ Created on Fri Jan 14 16:29:08 2022
5
+
6
+ @author: xp
7
+ """
8
 
9
  import streamlit as st
10
 
 
23
 
24
  model = st.selectbox("choose a model", ["roberta-base", "bert-base-uncased", "gpt2", "t5"])
25
 
26
+ data_load_state = st.text('Loading model...')
27
+ nlp = get_model(model)
28
+
29
  if text:
30
+
 
31
  data_load_state = st.text('Inference to model...')
32
  result = nlp(text+' '+nlp.tokenizer.mask_token)
33
  data_load_state.text('')