NimaBoscarino commited on
Commit
cd69b06
1 Parent(s): 442103f

Create current + past events tab

Browse files
Files changed (1) hide show
  1. app.py +55 -50
app.py CHANGED
@@ -327,56 +327,61 @@ with gr.Blocks(css="#margin-top {margin-top: 15px} #center {text-align: center;}
327
  At Hugging Face, we are committed to operationalizing ethics at the cutting-edge of machine learning. This page is dedicated to highlighting projects – inside and outside Hugging Face – in order to encourage and support more ethical development and use of AI. We wish to foster ongoing conversations of ethics and values; this means that this page will evolve over time, and your feedback is invaluable. Please open up an issue in the [Community tab](https://huggingface.co/spaces/society-ethics/about/discussions) to share your thoughts!
328
  """)
329
 
330
- with gr.Accordion(label="Upcoming Events", open=True):
331
- with gr.Row(elem_id="margin-top"):
332
- with gr.Column(scale=1):
333
- gr.Image(value="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/making-intelligence-banner.png", show_label=False)
334
- with gr.Column(scale=2):
335
- with gr.Tabs(elem_id="event-tabs"):
336
- with gr.Tab("About the Event"):
337
- gr.Markdown("""
338
- For our inaugural Ethics & Society Q&A, we're welcoming [Borhane Blili-Hamelin, PhD](https://borhane.xyz), and [Leif Hancox-Li, PhD](https://boltzmann-brain.github.io)!
339
-
340
- Come discuss their recent paper (["Making Intelligence: Ethical Values in IQ and ML Benchmarks"](https://arxiv.org/abs/2209.00692)), learn about the value-laden aspects of ML benchmarks, and share your ideas on how we can apply these lessons to our work 🤗
341
-
342
- Join the Discord and RSVP to the event: [Click me!](https://discord.com/events/879548962464493619/1082360845113229332) 🚀
343
-
344
- **Date:** March 13th 2023, 9:00 AM Pacific Time, **Location:** The Hugging Face Discord at #ethics-and-society
345
- """)
346
- with gr.Tab("Speaker Bios"):
347
- gr.Markdown("""
348
- ### About Borhane Blili-Hamelin, PhD (he/him)
349
-
350
- I’m a consultant, researcher, and organizer focused on AI ethics. As a consultant with BABL AI, I help organizations mitigate harm through AI risk management and auditing. I build cross-disciplinary research projects on the risks and values embedded in AI systems. I also love participatory problem-solving and community-driven projects. I'm Ethics and Performance Lead at AVID, founded Accountability Case Labs, and am co-director of Open Post Academics. I'm a Mozilla Festival alum: former TAIWG Project Lead and Wrangler. I strive to make AI governance more cross-disciplinary, reflective and empowering for impacted communities.
351
-
352
- I have a PhD in philosophy from Columbia University.
353
-
354
- I’m a Québec expat living in Brooklyn, NY!
355
-
356
- #### Links
357
-
358
- - Personal website: [borhane.xyz](https://borhane.xyz)
359
- - Linkedin: [linkedin.com/in/borhane](https://www.linkedin.com/in/borhane/)
360
- - Twitter: [@Borhane_B_H](https://twitter.com/Borhane_B_H)
361
-
362
- ### About Leif Hancox-Li, PhD (he/they)
363
-
364
- I’m a data scientist who does interdisciplinary [research](https://boltzmann-brain.github.io/papers) on responsible AI and helps data science teams make their models more explainable. I excel at bringing a humanistic perspective to technical issues while also having the skills to implement technical solutions that take social values into account. My research has won best paper awards at both [FAccT](https://twitter.com/FAccTConference/status/1369315183143903237?s=20) and the [Philosophy of Science Association](https://philsci.org/ernest_nagel_early-career_scho.php).
365
-
366
- Prior to this, I was a technical writer for a variety of software products, ranging from MLOps to REST APIs to complicated enterprise GUIs. An even longer time ago, I got a PhD in philosophy after stints in computer vision and physics.
367
-
368
- #### Links
369
-
370
- - Personal website: [boltzmann-brain.github.io](https://boltzmann-brain.github.io)
371
- - Linkedin: [https://www.linkedin.com/in/leif-hancox-li-1a6a7a132/](https://www.linkedin.com/in/leif-hancox-li-1a6a7a132/)
372
- - Twitter: [@struthious](https://twitter.com/struthious)
373
- """)
374
- with gr.Tab("Paper Abstract"):
375
- gr.Markdown("""
376
- Read the full paper at: [https://arxiv.org/abs/2209.00692](https://arxiv.org/abs/2209.00692)
377
-
378
- > In recent years, ML researchers have wrestled with defining and improving machine learning (ML) benchmarks and datasets. In parallel, some have trained a critical lens on the ethics of dataset creation and ML research. In this position paper, we highlight the entanglement of ethics with seemingly ``technical'' or ``scientific'' decisions about the design of ML benchmarks. Our starting point is the existence of multiple overlooked structural similarities between human intelligence benchmarks and ML benchmarks. Both types of benchmarks set standards for describing, evaluating, and comparing performance on tasks relevant to intelligence -- standards that many scholars of human intelligence have long recognized as value-laden. We use perspectives from feminist philosophy of science on IQ benchmarks and thick concepts in social science to argue that values need to be considered and documented when creating ML benchmarks. It is neither possible nor desirable to avoid this choice by creating value-neutral benchmarks. Finally, we outline practical recommendations for ML benchmark research ethics and ethics review.
379
- """)
 
 
 
 
 
380
 
381
  with gr.Accordion(label="Visit us over on the Hugging Face Discord!", open=False):
382
  gr.Markdown("""
327
  At Hugging Face, we are committed to operationalizing ethics at the cutting-edge of machine learning. This page is dedicated to highlighting projects – inside and outside Hugging Face – in order to encourage and support more ethical development and use of AI. We wish to foster ongoing conversations of ethics and values; this means that this page will evolve over time, and your feedback is invaluable. Please open up an issue in the [Community tab](https://huggingface.co/spaces/society-ethics/about/discussions) to share your thoughts!
328
  """)
329
 
330
+ with gr.Accordion(label="Events", open=False):
331
+ with gr.Tab(label="Upcoming Events"):
332
+ with gr.Row(elem_id="margin-top"):
333
+ gr.Markdown("We'll be announcing more events soon!")
334
+
335
+ with gr.Tab(label="Past Events"):
336
+ with gr.Row(elem_id="margin-top"):
337
+ with gr.Column(scale=1):
338
+ gr.Image(value="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/making-intelligence-banner.png", show_label=False)
339
+ with gr.Column(scale=2):
340
+ with gr.Tabs(elem_id="event-tabs"):
341
+ with gr.Tab("About the Event"):
342
+ gr.Markdown("""
343
+ For our inaugural Ethics & Society Q&A, we're welcoming [Borhane Blili-Hamelin, PhD](https://borhane.xyz), and [Leif Hancox-Li, PhD](https://boltzmann-brain.github.io)!
344
+
345
+ Come discuss their recent paper (["Making Intelligence: Ethical Values in IQ and ML Benchmarks"](https://arxiv.org/abs/2209.00692)), learn about the value-laden aspects of ML benchmarks, and share your ideas on how we can apply these lessons to our work 🤗
346
+
347
+ Join the Discord and RSVP to the event: [Click me!](https://discord.com/events/879548962464493619/1082360845113229332) 🚀
348
+
349
+ **Date:** March 13th 2023, 9:00 AM Pacific Time, **Location:** The Hugging Face Discord at #ethics-and-society
350
+ """)
351
+ with gr.Tab("Speaker Bios"):
352
+ gr.Markdown("""
353
+ ### About Borhane Blili-Hamelin, PhD (he/him)
354
+
355
+ I’m a consultant, researcher, and organizer focused on AI ethics. As a consultant with BABL AI, I help organizations mitigate harm through AI risk management and auditing. I build cross-disciplinary research projects on the risks and values embedded in AI systems. I also love participatory problem-solving and community-driven projects. I'm Ethics and Performance Lead at AVID, founded Accountability Case Labs, and am co-director of Open Post Academics. I'm a Mozilla Festival alum: former TAIWG Project Lead and Wrangler. I strive to make AI governance more cross-disciplinary, reflective and empowering for impacted communities.
356
+
357
+ I have a PhD in philosophy from Columbia University.
358
+
359
+ I’m a Québec expat living in Brooklyn, NY!
360
+
361
+ #### Links
362
+
363
+ - Personal website: [borhane.xyz](https://borhane.xyz)
364
+ - Linkedin: [linkedin.com/in/borhane](https://www.linkedin.com/in/borhane/)
365
+ - Twitter: [@Borhane_B_H](https://twitter.com/Borhane_B_H)
366
+
367
+ ### About Leif Hancox-Li, PhD (he/they)
368
+
369
+ I’m a data scientist who does interdisciplinary [research](https://boltzmann-brain.github.io/papers) on responsible AI and helps data science teams make their models more explainable. I excel at bringing a humanistic perspective to technical issues while also having the skills to implement technical solutions that take social values into account. My research has won best paper awards at both [FAccT](https://twitter.com/FAccTConference/status/1369315183143903237?s=20) and the [Philosophy of Science Association](https://philsci.org/ernest_nagel_early-career_scho.php).
370
+
371
+ Prior to this, I was a technical writer for a variety of software products, ranging from MLOps to REST APIs to complicated enterprise GUIs. An even longer time ago, I got a PhD in philosophy after stints in computer vision and physics.
372
+
373
+ #### Links
374
+
375
+ - Personal website: [boltzmann-brain.github.io](https://boltzmann-brain.github.io)
376
+ - Linkedin: [https://www.linkedin.com/in/leif-hancox-li-1a6a7a132/](https://www.linkedin.com/in/leif-hancox-li-1a6a7a132/)
377
+ - Twitter: [@struthious](https://twitter.com/struthious)
378
+ """)
379
+ with gr.Tab("Paper Abstract"):
380
+ gr.Markdown("""
381
+ Read the full paper at: [https://arxiv.org/abs/2209.00692](https://arxiv.org/abs/2209.00692)
382
+
383
+ > In recent years, ML researchers have wrestled with defining and improving machine learning (ML) benchmarks and datasets. In parallel, some have trained a critical lens on the ethics of dataset creation and ML research. In this position paper, we highlight the entanglement of ethics with seemingly ``technical'' or ``scientific'' decisions about the design of ML benchmarks. Our starting point is the existence of multiple overlooked structural similarities between human intelligence benchmarks and ML benchmarks. Both types of benchmarks set standards for describing, evaluating, and comparing performance on tasks relevant to intelligence -- standards that many scholars of human intelligence have long recognized as value-laden. We use perspectives from feminist philosophy of science on IQ benchmarks and thick concepts in social science to argue that values need to be considered and documented when creating ML benchmarks. It is neither possible nor desirable to avoid this choice by creating value-neutral benchmarks. Finally, we outline practical recommendations for ML benchmark research ethics and ethics review.
384
+ """)
385
 
386
  with gr.Accordion(label="Visit us over on the Hugging Face Discord!", open=False):
387
  gr.Markdown("""