Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
analist
/
qa_table
like
4
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a5c227b
qa_table
/
app.py
analist
Create app.py
a5c227b
over 1 year ago
raw
Copy download link
history
blame
Safe
222 Bytes
# Use a pipeline as a high-level helper
from
transformers
import
pipeline
import
streamlit
as
st
pipe = pipeline(
"table-question-answering"
, model=
"google/tapas-large-finetuned-wtq"
)
st.title(
'Query your data with text'
)