Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
import torch
|
3 |
+
from transformers import pipeline
|
4 |
+
from transformers import AutoModelForQuestionAnswering
|
5 |
+
from transformers import AutoTokenizer
|
6 |
+
|
7 |
+
# Replace with your Hugging Face model repository path
|
8 |
+
model_repo_path = 'MaawaKhalid/Extractive-QA-Model'
|
9 |
+
|
10 |
+
# Load the model and tokenizer
|
11 |
+
model = AutoModelForQuestionAnswering.from_pretrained(model_repo_path)
|
12 |
+
tokenizer = AutoTokenizer.from_pretrained(model_repo_path)
|
13 |
+
|
14 |
+
# Initialize the question-answering pipeline
|
15 |
+
question_answerer = pipeline("question-answering", model=model, tokenizer=tokenizer)
|
16 |
+
|
17 |
+
# Streamlit app layout
|
18 |
+
st.title("Question Answering App")
|
19 |
+
|
20 |
+
# Define session state keys
|
21 |
+
if 'context' not in st.session_state:
|
22 |
+
st.session_state.context = ""
|
23 |
+
if 'question' not in st.session_state:
|
24 |
+
st.session_state.question = ""
|
25 |
+
|
26 |
+
# User input
|
27 |
+
text_input = st.text_area("Enter the Context first", value=st.session_state.context, height=180)
|
28 |
+
|
29 |
+
# Update session state with the new context
|
30 |
+
if st.button("Next"):
|
31 |
+
if text_input:
|
32 |
+
st.session_state.context = text_input
|
33 |
+
st.session_state.question = "" # Clear the previous question
|
34 |
+
else:
|
35 |
+
st.warning("Please enter some context to move to next part.")
|
36 |
+
|
37 |
+
# Show question input if context is available
|
38 |
+
if st.session_state.context:
|
39 |
+
question_input = st.text_area("Enter the Question", value=st.session_state.question, height=100)
|
40 |
+
|
41 |
+
if st.button("Answer"):
|
42 |
+
if question_input:
|
43 |
+
st.session_state.question = question_input
|
44 |
+
with st.spinner("Generating Answer..."):
|
45 |
+
try:
|
46 |
+
answer = question_answerer(question=question_input, context=st.session_state.context)
|
47 |
+
# Display the answer
|
48 |
+
st.subheader("Answer")
|
49 |
+
st.write(answer.get('answer', 'No answer found'))
|
50 |
+
except Exception as e:
|
51 |
+
st.error(f"Error during Question Answering: {e}")
|
52 |
+
else:
|
53 |
+
st.warning("Please enter some Question to get Answer.")
|