Spaces:
Sleeping
Sleeping
mariagrandury
commited on
Commit
•
a302361
1
Parent(s):
9de9040
change date format and upgrade gradio
Browse files- app.py +4 -2
- nlp_conferences.csv +6 -5
- requirements.txt +1 -1
app.py
CHANGED
@@ -3,6 +3,8 @@ import pandas as pd
|
|
3 |
|
4 |
df = pd.read_csv("nlp_conferences.csv")
|
5 |
|
|
|
|
|
6 |
|
7 |
def update_table(search_query):
|
8 |
if search_query == "":
|
@@ -46,7 +48,7 @@ with gr.Blocks() as app:
|
|
46 |
show_label=False,
|
47 |
interactive=False,
|
48 |
wrap=True,
|
49 |
-
column_widths=
|
50 |
)
|
51 |
search_box.change(fn=update_table, inputs=search_box, outputs=table)
|
52 |
|
@@ -72,7 +74,7 @@ with gr.Blocks() as app:
|
|
72 |
show_label=False,
|
73 |
interactive=False,
|
74 |
wrap=True,
|
75 |
-
column_widths=
|
76 |
)
|
77 |
search_box.change(fn=update_table, inputs=search_box, outputs=table)
|
78 |
|
|
|
3 |
|
4 |
df = pd.read_csv("nlp_conferences.csv")
|
5 |
|
6 |
+
column_widths = ["18%", "20%", "17%", "15%", "30%"]
|
7 |
+
|
8 |
|
9 |
def update_table(search_query):
|
10 |
if search_query == "":
|
|
|
48 |
show_label=False,
|
49 |
interactive=False,
|
50 |
wrap=True,
|
51 |
+
column_widths=column_widths,
|
52 |
)
|
53 |
search_box.change(fn=update_table, inputs=search_box, outputs=table)
|
54 |
|
|
|
74 |
show_label=False,
|
75 |
interactive=False,
|
76 |
wrap=True,
|
77 |
+
column_widths=column_widths,
|
78 |
)
|
79 |
search_box.change(fn=update_table, inputs=search_box, outputs=table)
|
80 |
|
nlp_conferences.csv
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
Conference, Location, Date, Deadline, Website
|
2 |
-
ACL 2024, Bangkok Thailand,
|
3 |
-
NLMLT 2024, Vienna Austria,
|
4 |
-
EMNLP 2024, Miami USA,
|
5 |
-
NeurIPS 2024, Vancouver Canada,
|
6 |
-
COLING 2025, Abu Dhabi UAE,
|
|
|
|
1 |
Conference, Location, Date, Deadline, Website
|
2 |
+
ACL 2024, Bangkok Thailand, 2024 / 08 / 11-16, 2024 / 02 / 15, https://2024.aclweb.org
|
3 |
+
NLMLT 2024, Vienna Austria, 2024 / 10 / 26-27, 2024 / 06 / 29, https://cst2024.org/nlmlt
|
4 |
+
EMNLP 2024, Miami USA, 2024 / 11 / 12-16, 2024 / 06 / 15, https://2024.emnlp.org
|
5 |
+
NeurIPS 2024, Vancouver Canada, 2024 / 12 / 09-15,2024 / 05 / 22, https://neurips.cc/Conferences/2024
|
6 |
+
COLING 2025, Abu Dhabi UAE, 2025 / 01 / 19-24, 2024 / 09 / 16, https://coling2025.org
|
7 |
+
SEPLN 2024, Valladolid Spain, 2024 / 09 / 24-27, 2024 / 04 / 04, http://sepln2024.infor.uva.es
|
requirements.txt
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
gradio==4.
|
2 |
pandas==2.2.1
|
|
|
1 |
+
gradio==4.29.0
|
2 |
pandas==2.2.1
|