Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ import streamlit as st
|
|
2 |
from transformers import pipeline
|
3 |
|
4 |
# Load the question-answering pipeline
|
5 |
-
qa_pipeline = pipeline("question-answering", model="
|
6 |
|
7 |
# Title of the app
|
8 |
st.title("Question Answering with Meltemi-7B")
|
|
|
2 |
from transformers import pipeline
|
3 |
|
4 |
# Load the question-answering pipeline
|
5 |
+
qa_pipeline = pipeline("question-answering", model="deepset/roberta-base-squad2")
|
6 |
|
7 |
# Title of the app
|
8 |
st.title("Question Answering with Meltemi-7B")
|