cyberandy commited on
Commit
dedd775
·
1 Parent(s): 0bec8b3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -5
app.py CHANGED
@@ -3,18 +3,23 @@ from annotated_text import annotated_text
3
  from refined.inference.processor import Refined
4
 
5
  # Sidebar
6
- st.sidebar.image("logo-wordlift.png")
7
 
8
  # Initiate the model
9
  model_options = {"aida_model", "wikipedia_model_with_numbers"}
10
- selected_model = st.sidebar.selectbox("Select the Model", list(model_options))
11
 
12
- # Load the pretrained model
13
- refined_model = Refined.from_pretrained(model_name=selected_model, entity_set="wikipedia")
 
 
 
 
 
 
14
 
15
  # Create the form
16
  with st.form(key='my_form'):
17
- st.sidebar.image(image, caption='', use_column_width=True)
18
  text_input = st.text_input(label='Enter a sentence')
19
  submit_button = st.form_submit_button(label='Submit')
20
 
 
3
  from refined.inference.processor import Refined
4
 
5
  # Sidebar
6
+ # st.sidebar.image("logo-wordlift.png")
7
 
8
  # Initiate the model
9
  model_options = {"aida_model", "wikipedia_model_with_numbers"}
10
+ selected_model_name = st.sidebar.selectbox("Select the Model", list(model_options))
11
 
12
+ @st.cache_resource # 👈 Add the caching decorator
13
+ def load_model(model_name):
14
+ # Load the pretrained model
15
+ refined_model = Refined.from_pretrained(model_name=model_name, entity_set="wikipedia")
16
+ return refined_model
17
+
18
+ # Use the cache model
19
+ refined_model = load_model(selected_model_name)
20
 
21
  # Create the form
22
  with st.form(key='my_form'):
 
23
  text_input = st.text_input(label='Enter a sentence')
24
  submit_button = st.form_submit_button(label='Submit')
25