Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use a pipeline as a high-level helper
|
2 |
+
from transformers import pipeline
|
3 |
+
import streamlit as st
|
4 |
+
|
5 |
+
pipe = pipeline("table-question-answering", model="google/tapas-large-finetuned-wtq")
|
6 |
+
|
7 |
+
st.title('Query your data with text')
|