Spaces:
Running
Running
Zekun Wu
commited on
Commit
·
cf25467
1
Parent(s):
f0d28e4
update
Browse files- app.py +3 -1
- pages/1_Generation.py +1 -1
- pages/2_Evaluation.py +1 -1
app.py
CHANGED
@@ -10,5 +10,7 @@ st.write("# Welcome to JobFair! 👋")
|
|
10 |
st.sidebar.success("Select a demo above.")
|
11 |
|
12 |
st.markdown(
|
13 |
-
"""
|
|
|
|
|
14 |
)
|
|
|
10 |
st.sidebar.success("Select a demo above.")
|
11 |
|
12 |
st.markdown(
|
13 |
+
"""
|
14 |
+
JobFair: A Benchmark for Fairness in LLM Employment Decision
|
15 |
+
"""
|
16 |
)
|
pages/1_Generation.py
CHANGED
@@ -6,7 +6,7 @@ from util.model import AzureAgent, GPTAgent
|
|
6 |
from util.analysis import statistical_tests, result_evaluation
|
7 |
|
8 |
# Set up the Streamlit interface
|
9 |
-
st.title('
|
10 |
st.sidebar.title('Model Settings')
|
11 |
|
12 |
|
|
|
6 |
from util.analysis import statistical_tests, result_evaluation
|
7 |
|
8 |
# Set up the Streamlit interface
|
9 |
+
st.title('Result Generation')
|
10 |
st.sidebar.title('Model Settings')
|
11 |
|
12 |
|
pages/2_Evaluation.py
CHANGED
@@ -4,7 +4,7 @@ from io import StringIO
|
|
4 |
from util.analysis import statistical_tests, result_evaluation
|
5 |
|
6 |
def app():
|
7 |
-
st.title('
|
8 |
|
9 |
# Allow users to upload a CSV file with processed results
|
10 |
uploaded_file = st.file_uploader("Upload your processed CSV file", type="csv")
|
|
|
4 |
from util.analysis import statistical_tests, result_evaluation
|
5 |
|
6 |
def app():
|
7 |
+
st.title('Result Evaluation')
|
8 |
|
9 |
# Allow users to upload a CSV file with processed results
|
10 |
uploaded_file = st.file_uploader("Upload your processed CSV file", type="csv")
|