meg's picture
meg HF staff
Update app.py
584a3d4 verified
raw history blame
No virus
1.01 kB
import gradio as gr
writing = """Practice tutorial: Creating Ethical Charters in AI Development
This tutorial outlines the process of creating ethical charters for AI development projects, focusing on moral value pluralism and collaborative, inclusive practices. We discuss why it’s important to identify common core values to guide projects and navigate tensions, drawing inspiration from Confucian ethical traditions that promote harmony. The session includes steps for determining relevant values, building consensus, and implementing these values within specific AI initiatives. We aim to promote values-informed AI development by utilizing previous work as case studies, such as the BigScience project and other ethical frameworks from major tech companies. Participants will learn techniques for integrating ethics into their work, ultimately influencing priorities and impacts in AI technology development."""
def welcome(name):
return writing
tutorial = gr.Interface(fn=welcome)
tutorial.launch()