-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (65 loc) · 3.38 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<title>Ethical Implications of AI 🦆</title>
<style>
body {
background-color: #f5f5f5;
padding: 20px;
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
color: #333;
}
iframe {
width: 100%;
height: 500px;
border: none;
}
.about-me {
margin-top: 30px;
text-align: center;
}
</style>
</head>
<body>
<h1>Ethical Implications of Artificial Intelligence 🦆</h1>
<h2>Project Aim and Goals</h2>
<p>This project aims to identify best practices and loopholes in existing AI policies across different countries/ regions and provide recommendations for improvement.</p>
<p>The goals of this project include:</p>
<ul>
<li>Promoting the responsible use of AI by identifying best practices, analyzing existing policies, and providing recommendations for better transparency and accountability.</li>
<li>Helping everyday individuals and organizations understand the benefits and impact of AI policies.</li>
</ul>
<p>The project welcomes contributions and suggestions from interested individuals. If you would like to contribute, please check out the <a href="https://github.com/gigikenneth/ai-ethical-implications">GitHub repository</a>.</p>
<p>I worked on this project with the help of my mentor, <a href="https://github.com/complexbrains">Isil</a> during the <a href="https://openlifesci.org/ols-7">Open Life Science Fellowship (OLS-7)</a>, which provided valuable support and resources to help advance the project's objectives.</p>
<hr>
<h2>AI Policy Comparison Table</h2>
<iframe src="https://docs.google.com/spreadsheets/d/e/2PACX-1vS0jyFy1M0jFUseSphhMqSGZideuddZLWuaGPUGrEDLfYGW6Ad8c5EuBaOB3Pmk3ppLi9Nk4C0b7Wj8/pubhtml?widget=true&headers=false"></iframe>
<hr>
<div id="readme-content"></div>
<hr>
<div class="about-me">
<h2>About Me</h2>
<p>Hello, I'm Gigi! I'm passionate about exploring the ethical implications of AI and its impact on society. I have been actively involved in various AI projects and initiatives, aiming to promote responsible and inclusive AI development. If you have any questions, collaborations, or just want to say hello, feel free to reach out to me on: <a href="https://github.com/gigikenneth">GitHub</a>, <a href="https://www.linkedin.com/in/gigikenneth">LinkedIn</a>, <a href="mailto:[email protected]">Email</a>, <a href="https://mainstack.me/gigikenneth">Website</a></p></p>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/showdown.min.js"></script>
<script>
function fetchAndUpdateReadme() {
fetch('https://raw.githubusercontent.com/gigikenneth/ai-ethics-resources/main/README.md')
.then(response => response.text())
.then(text => {
const converter = new showdown.Converter();
const html = converter.makeHtml(text);
document.getElementById('readme-content').innerHTML = html;
})
.catch(error => {
console.error('Error fetching README file:', error);
});
}
// Initial fetch and update
fetchAndUpdateReadme();
</script>
</body>
</html>