Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ import streamlit as st
|
|
2 |
import pandas as pd
|
3 |
from transformers import pipeline
|
4 |
|
5 |
-
df = pd.read_excel('discrepantes.xlsx')
|
6 |
|
7 |
def response(user_question):
|
8 |
tqa = pipeline(task="table-question-answering", model="google/tapas-large-finetuned-wtq")
|
|
|
2 |
import pandas as pd
|
3 |
from transformers import pipeline
|
4 |
|
5 |
+
df = pd.read_excel('discrepantes.xlsx', index_col='Unnamed: 0')
|
6 |
|
7 |
def response(user_question):
|
8 |
tqa = pipeline(task="table-question-answering", model="google/tapas-large-finetuned-wtq")
|