MSey commited on
Commit
a38d800
·
verified ·
1 Parent(s): 5062d6a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -6,9 +6,10 @@ def context_text(text): return f"### Context\n{text}\n\n### Answer"
6
 
7
  @st.cache_resource
8
  def load_pipe():
9
- return pipeline("token-classification", model="MSey/pbt_CaBERT_7_c10731")
 
10
 
11
- pipe = load_pipe()
12
 
13
  st.header("Test Environment for pbt_CaBERT_7_c10731")
14
  user_input = st.text_input("Enter your Prompt here:", "")
 
6
 
7
  @st.cache_resource
8
  def load_pipe():
9
+ model_name = "MSey/pbt_CaBERT_7_c10731"
10
+ return pipeline("token-classification", model=model_name), AutoTokenizer.from_pretrained(model_name)
11
 
12
+ pipe, tokenizer = load_pipe()
13
 
14
  st.header("Test Environment for pbt_CaBERT_7_c10731")
15
  user_input = st.text_input("Enter your Prompt here:", "")