Spaces:
Sleeping
Sleeping
Updated requirements and imports
Browse files- requirements.txt +4 -1
- src/streamlit_app.py +4 -2
requirements.txt
CHANGED
@@ -1,3 +1,6 @@
|
|
1 |
altair
|
2 |
pandas
|
3 |
-
streamlit
|
|
|
|
|
|
|
|
1 |
altair
|
2 |
pandas
|
3 |
+
streamlit
|
4 |
+
transformers
|
5 |
+
pygwalker
|
6 |
+
torch
|
src/streamlit_app.py
CHANGED
@@ -1,7 +1,9 @@
|
|
1 |
-
import altair as alt
|
2 |
-
import numpy as np
|
3 |
import pandas as pd
|
|
|
4 |
import streamlit as st
|
|
|
|
|
|
|
5 |
|
6 |
"""
|
7 |
# Welcome to Streamlit!
|
|
|
|
|
|
|
1 |
import pandas as pd
|
2 |
+
from transformers import pipeline
|
3 |
import streamlit as st
|
4 |
+
from pygwalker.api.streamlit import StreamlitRenderer
|
5 |
+
import re
|
6 |
+
from typing import List, Any
|
7 |
|
8 |
"""
|
9 |
# Welcome to Streamlit!
|