File size: 1,013 Bytes
ec8f710
 
584a3d4
 
ec8f710
584a3d4
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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()