Update app.py
Browse files
app.py
CHANGED
@@ -65,7 +65,9 @@ if Run_Button == True:
|
|
65 |
qna_pipeline = setModel(model_checkpoint)
|
66 |
output = qna_pipeline(question=selected_question, context=selected_context)
|
67 |
|
68 |
-
|
|
|
|
|
69 |
cols_to_keep = ['answer','score','start','end']
|
70 |
df_final = df[cols_to_keep]
|
71 |
|
|
|
65 |
qna_pipeline = setModel(model_checkpoint)
|
66 |
output = qna_pipeline(question=selected_question, context=selected_context)
|
67 |
|
68 |
+
output["answer"] = str(output["answer"])
|
69 |
+
|
70 |
+
df = pd.DataFrame.from_dict(output)
|
71 |
cols_to_keep = ['answer','score','start','end']
|
72 |
df_final = df[cols_to_keep]
|
73 |
|