Hch Li commited on
Commit ·
b3b2e6b
1
Parent(s): 2a314c0
fix version
Browse files- app.py +2 -1
- requirements.txt +1 -1
app.py
CHANGED
|
@@ -5,7 +5,8 @@ import pandas as pd
|
|
| 5 |
from about_content import about_markdown # Import the about page content
|
| 6 |
from submission_content import submission_markdown # Import the submission page content
|
| 7 |
import plotly.express as px
|
| 8 |
-
|
|
|
|
| 9 |
# Helper function to load data from JSON files
|
| 10 |
def load_data(data_dir):
|
| 11 |
data = []
|
|
|
|
| 5 |
from about_content import about_markdown # Import the about page content
|
| 6 |
from submission_content import submission_markdown # Import the submission page content
|
| 7 |
import plotly.express as px
|
| 8 |
+
import plotly
|
| 9 |
+
print(plotly.__version__)
|
| 10 |
# Helper function to load data from JSON files
|
| 11 |
def load_data(data_dir):
|
| 12 |
data = []
|
requirements.txt
CHANGED
|
@@ -12,6 +12,6 @@ pandas
|
|
| 12 |
python-dateutil
|
| 13 |
tqdm
|
| 14 |
transformers
|
| 15 |
-
plotly
|
| 16 |
tokenizers>=0.15.0
|
| 17 |
sentencepiece
|
|
|
|
| 12 |
python-dateutil
|
| 13 |
tqdm
|
| 14 |
transformers
|
| 15 |
+
plotly==5.24.1
|
| 16 |
tokenizers>=0.15.0
|
| 17 |
sentencepiece
|