Rahatara commited on
Commit
0009c62
·
verified ·
1 Parent(s): c512f6f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py CHANGED
@@ -63,6 +63,16 @@ h1 { color: #333; animation: fadeIn 2s; }
63
  .textbox { width: 100%; padding: 12px 20px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; box-sizing: border-box; }
64
  """
65
 
 
 
 
 
 
 
 
 
 
 
66
  # Gradio interface setup
67
  with gr.Blocks(css=css) as app:
68
  gr.Markdown("<div id='logo'>J<span>ustEva</span></div>")
 
63
  .textbox { width: 100%; padding: 12px 20px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; box-sizing: border-box; }
64
  """
65
 
66
+ # Example scenarios for gender discrimination analysis
67
+ example_scenarios = [
68
+ "During a team meeting, whenever a female colleague tried to express her opinion, she was often interrupted or talked over by male colleagues.",
69
+ "The feedback given to female employees often focuses more on their demeanor and less on their actual accomplishments.",
70
+ "Male employees are more frequently considered for promotions and challenging projects, even when female employees have similar or superior qualifications.",
71
+ "During a hiring panel, female candidates were often asked about their personal life, family plans, and how they would balance home and work.",
72
+ "There are significant wage discrepancies between male and female employees who hold the same position and possess comparable experience.",
73
+ "Some male colleagues often make inappropriate jokes or comments about female employees' appearances and attire."
74
+ ]
75
+
76
  # Gradio interface setup
77
  with gr.Blocks(css=css) as app:
78
  gr.Markdown("<div id='logo'>J<span>ustEva</span></div>")