Update app.py
Browse files
app.py
CHANGED
|
@@ -10,7 +10,7 @@ Original file is located at
|
|
| 10 |
import streamlit as st
|
| 11 |
from transformers import pipeline
|
| 12 |
|
| 13 |
-
classifier = pipeline("question-answering", model="roberta-base
|
| 14 |
def main():
|
| 15 |
st.title("Question & Answering")
|
| 16 |
|
|
|
|
| 10 |
import streamlit as st
|
| 11 |
from transformers import pipeline
|
| 12 |
|
| 13 |
+
classifier = pipeline("question-answering", model="deepset/roberta-base-squad2")
|
| 14 |
def main():
|
| 15 |
st.title("Question & Answering")
|
| 16 |
|