Update app.py
Browse files
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 |
-
|
|
|
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:", "")
|