yjernite HF Staff commited on
Commit
0d0bb29
·
verified ·
1 Parent(s): a2ed9b3

Upload 5 files

Browse files
Files changed (2) hide show
  1. js/data/areas.js +24 -5
  2. js/data/team.js +4 -4
js/data/areas.js CHANGED
@@ -1,7 +1,6 @@
1
  // areas.js - Centralized areas data
2
  export const areasData = {
3
  efficiency: {
4
- id: 'efficiency',
5
  name: 'Efficiency',
6
  title: 'Efficiency, Costs, and Environment',
7
  description: 'The question of costs is essential to understanding and managing the impact of AI technology; it determines who gets to develop it, use it, and how externalized costs are borne by people who do not choose or benefit from the technology.',
@@ -44,7 +43,6 @@ export const areasData = {
44
  imagePosition: 'left'
45
  },
46
  personal: {
47
- id: 'personal',
48
  name: 'Personal',
49
  title: 'Consent and Personal Interactions',
50
  description: 'Individuals\' experiences of AI systems are shaped both by their personal interactions and by the ways the systems interact with their digital identities - often without our awareness or ability to meaningfully consent.',
@@ -64,11 +62,15 @@ export const areasData = {
64
  subAreas: {
65
  interaction: {
66
  name: 'Characterizing personal and parasocial AI interactions',
 
 
67
  color: 'bg-fuchsia-100 text-fuchsia-800',
68
  gradient: 'from-fuchsia-50 to-fuchsia-100 hover:from-fuchsia-100 hover:to-fuchsia-200 border-fuchsia-200 hover:border-fuchsia-300 text-fuchsia-900'
69
  },
70
  privacy: {
71
  name: 'Consent and privacy',
 
 
72
  color: 'bg-violet-100 text-violet-800',
73
  gradient: 'from-violet-50 to-violet-100 hover:from-violet-100 hover:to-violet-200 border-violet-200 hover:border-violet-300 text-violet-900'
74
  },
@@ -76,7 +78,6 @@ export const areasData = {
76
  imagePosition: 'right'
77
  },
78
  rights: {
79
- id: 'rights',
80
  name: 'Rights',
81
  title: 'Rights and Regulations',
82
  description: 'AI is not exempt from regulation; but understanding how new and existing rules apply to technical paradigms involving unprecedented scales of data and automation can present unique challenges.',
@@ -96,16 +97,22 @@ export const areasData = {
96
  subAreas: {
97
  general: {
98
  name: 'How does existing regulation apply to AI',
 
 
99
  color: 'bg-purple-100 text-purple-800',
100
  gradient: 'from-purple-50 to-purple-100 hover:from-purple-100 hover:to-purple-200 border-purple-200 hover:border-purple-300 text-purple-900'
101
  },
102
  specific: {
103
  name: 'Navigating new AI-specific regulation',
 
 
104
  color: 'bg-cyan-100 text-cyan-800',
105
  gradient: 'from-cyan-50 to-cyan-100 hover:from-cyan-100 hover:to-cyan-200 border-cyan-200 hover:border-cyan-300 text-cyan-900'
106
  },
107
  open: {
108
  name: 'The place of open-source in regulation',
 
 
109
  color: 'bg-pink-100 text-pink-800',
110
  gradient: 'from-pink-50 to-pink-100 hover:from-pink-100 hover:to-pink-200 border-pink-200 hover:border-pink-300 text-pink-900'
111
  }
@@ -113,7 +120,6 @@ export const areasData = {
113
  imagePosition: 'left'
114
  },
115
  ecosystems: {
116
- id: 'ecosystems',
117
  name: 'Ecosystems',
118
  title: 'Socio-economic and Technical Ecosystems',
119
  description: 'While discussions of the impact of AI often focus on technical characteristics of individual systems, the trajectory and impact of the technology are often better explained by looking to broader dynamics of market power and economic incentives.',
@@ -133,16 +139,22 @@ export const areasData = {
133
  subAreas: {
134
  labor: {
135
  name: 'Labor impacts of AI',
 
 
136
  color: 'bg-yellow-100 text-yellow-800',
137
  gradient: 'from-yellow-50 to-yellow-100 hover:from-yellow-100 hover:to-yellow-200 border-yellow-200 hover:border-yellow-300 text-yellow-900'
138
  },
139
  power: {
140
  name: 'Power, monopolies, and sovereignty',
 
 
141
  color: 'bg-red-100 text-red-800',
142
  gradient: 'from-red-50 to-red-100 hover:from-red-100 hover:to-red-200 border-red-200 hover:border-red-300 text-red-900'
143
  },
144
  usage: {
145
  name: 'How and where is (open) AI used',
 
 
146
  color: 'bg-purple-100 text-purple-800',
147
  gradient: 'from-purple-50 to-purple-100 hover:from-purple-100 hover:to-purple-200 border-purple-200 hover:border-purple-300 text-purple-900'
148
  }
@@ -154,6 +166,13 @@ export const areasData = {
154
  export const homeBackgroundImage = {
155
  image: 'ai.png',
156
  attribution: 'Jamillah Knowles & Digit | BetterImagesOfAI, CC-BY-4.0',
157
- altText: 'The image is of the exterior of an impression of a building. People and figures can be seen inside and outside of the building. There are clouds of network connections all around the building and inside. It relates to the digital networked workplace. ',
158
  sourceUrl: 'https://betterimagesofai.org/images?artist=JamillahKnowles&title=BuildingCorp'
 
 
 
 
 
 
 
159
  };
 
1
  // areas.js - Centralized areas data
2
  export const areasData = {
3
  efficiency: {
 
4
  name: 'Efficiency',
5
  title: 'Efficiency, Costs, and Environment',
6
  description: 'The question of costs is essential to understanding and managing the impact of AI technology; it determines who gets to develop it, use it, and how externalized costs are borne by people who do not choose or benefit from the technology.',
 
43
  imagePosition: 'left'
44
  },
45
  personal: {
 
46
  name: 'Personal',
47
  title: 'Consent and Personal Interactions',
48
  description: 'Individuals\' experiences of AI systems are shaped both by their personal interactions and by the ways the systems interact with their digital identities - often without our awareness or ability to meaningfully consent.',
 
62
  subAreas: {
63
  interaction: {
64
  name: 'Characterizing personal and parasocial AI interactions',
65
+ description: 'Interactions between individuals and AI systems, whether active in the use of chatbots or passive when people are affected by the output of AI systems, are shaped by the values, behaviors, and priorities of the developers and the technology.',
66
+ openness: 'Open access to the training datasets, development approaches, and trained models is necessary not just for developing methods to characterize and trace these characteristics of the systems, but to adapt them to the needs and desires of different communities of users.',
67
  color: 'bg-fuchsia-100 text-fuchsia-800',
68
  gradient: 'from-fuchsia-50 to-fuchsia-100 hover:from-fuchsia-100 hover:to-fuchsia-200 border-fuchsia-200 hover:border-fuchsia-300 text-fuchsia-900'
69
  },
70
  privacy: {
71
  name: 'Consent and privacy',
72
+ description: 'Consent and privacy are intrinsically linked notions in the context of AI systems, as questions on both typically revolve around where and how a person\'s data or digital identity is used in the training or deployment of AI systems. These raise questions about the use of sensitive data, the value of creative works, surveillance dynamics at scale, and generally the conditions for access to digital infrastructure.',
73
+ openness: 'Open access or sufficient transparency into training data and inputs of AI systems are necessary to support informed consent, and access to open models enables uses of the technology that do not require users to give away their or other people\'s data.',
74
  color: 'bg-violet-100 text-violet-800',
75
  gradient: 'from-violet-50 to-violet-100 hover:from-violet-100 hover:to-violet-200 border-violet-200 hover:border-violet-300 text-violet-900'
76
  },
 
78
  imagePosition: 'right'
79
  },
80
  rights: {
 
81
  name: 'Rights',
82
  title: 'Rights and Regulations',
83
  description: 'AI is not exempt from regulation; but understanding how new and existing rules apply to technical paradigms involving unprecedented scales of data and automation can present unique challenges.',
 
97
  subAreas: {
98
  general: {
99
  name: 'How does existing regulation apply to AI',
100
+ description: 'Existing regulations, especially regulations governing transfers of data and use of algorithms in sensitive domains like healthcare or education, also apply to AI systems. However, the unprecedented scale of data and automation involved in this new technical paradigm can challenge previous understandings of the mechanisms for applying those regulations.',
101
+ openness: 'Open access to AI systems enables independent research led by legal and domain experts of regulated domains to explore the existing and new legal questions raised by the technology without having to rely on the interpretations of a few model developers.',
102
  color: 'bg-purple-100 text-purple-800',
103
  gradient: 'from-purple-50 to-purple-100 hover:from-purple-100 hover:to-purple-200 border-purple-200 hover:border-purple-300 text-purple-900'
104
  },
105
  specific: {
106
  name: 'Navigating new AI-specific regulation',
107
+ description: 'Artificial Intelligence has also required new regulatory attention in the form of AI-specific legislation, such as the EU AI Act and several US state and federal bills. These have raised important questions about which risks to prioritize in legislative actions, and how to arbitrated between different interests and perspectives on the technology.',
108
+ openness: 'Open access to AI systems has enabled more robust evaluation of the capabilities and limitations of AI systems, and of the resource trade-offs and externalities involved in their development and deployment.',
109
  color: 'bg-cyan-100 text-cyan-800',
110
  gradient: 'from-cyan-50 to-cyan-100 hover:from-cyan-100 hover:to-cyan-200 border-cyan-200 hover:border-cyan-300 text-cyan-900'
111
  },
112
  open: {
113
  name: 'The place of open-source in regulation',
114
+ description: 'While open-source software and open development of AI systems are often seen as a cornerstone of innovation and technology development, they are often relegated to a last-minute consideration in regulatory discussions, which can be particularly damaging given the diversity of development contexts and developer and researcher profiles who participate in it.',
115
+ openness: 'Open research and centralized resources for legal compliance in open-source and collaborative development settings helps lower barriers to participation that could be insurmountable for the often less-resourced organizations doing much of the most publicly beneficial work.',
116
  color: 'bg-pink-100 text-pink-800',
117
  gradient: 'from-pink-50 to-pink-100 hover:from-pink-100 hover:to-pink-200 border-pink-200 hover:border-pink-300 text-pink-900'
118
  }
 
120
  imagePosition: 'left'
121
  },
122
  ecosystems: {
 
123
  name: 'Ecosystems',
124
  title: 'Socio-economic and Technical Ecosystems',
125
  description: 'While discussions of the impact of AI often focus on technical characteristics of individual systems, the trajectory and impact of the technology are often better explained by looking to broader dynamics of market power and economic incentives.',
 
139
  subAreas: {
140
  labor: {
141
  name: 'Labor impacts of AI',
142
+ description: 'Given the ubiquity of data and algorithmic systems in the economy, AI is likely to have a significant impact on labor conditions and opportunities, and to displace certain types of value from workers to technology developers. Understanding to how, to what extent, and how to locate development so AI benefits its adopters and not just its developers will require significant work from all categories of stakeholders.',
143
+ openness: 'Open access to AI systems can enable both more reliable research into the fitness for purpose of AI systems in workplaces, the disparate cost of its development, and enable its development and control by organizations that are closer to the context and interests of its adopters.',
144
  color: 'bg-yellow-100 text-yellow-800',
145
  gradient: 'from-yellow-50 to-yellow-100 hover:from-yellow-100 hover:to-yellow-200 border-yellow-200 hover:border-yellow-300 text-yellow-900'
146
  },
147
  power: {
148
  name: 'Power, monopolies, and sovereignty',
149
+ description: 'As a few companies have come to dominate the development and resources that support the most visible AI systems, market concentration dynamics and technological sovereignty questions will play a significant role in determining the positive and negative outcomes of the technology.',
150
+ openness: 'Open access and open development of AI systems has enabled access to the technology that is less dependent on the resources of a few companies, more transparent to regulators, and shaped by a greater variety of actors.',
151
  color: 'bg-red-100 text-red-800',
152
  gradient: 'from-red-50 to-red-100 hover:from-red-100 hover:to-red-200 border-red-200 hover:border-red-300 text-red-900'
153
  },
154
  usage: {
155
  name: 'How and where is (open) AI used',
156
+ description: 'Understanding how and where AI is used and what data and compute resources support its development and deployment is essential to understanding its impact on society. This includes studying which domains it is more or less suitable for, how AI systems are adapted and transformed by different actors, and where the data that supports its development comes from.',
157
+ openness: 'Documentation and transparency of the components and use cases of AI systems supports research by broader domains of expertise.',
158
  color: 'bg-purple-100 text-purple-800',
159
  gradient: 'from-purple-50 to-purple-100 hover:from-purple-100 hover:to-purple-200 border-purple-200 hover:border-purple-300 text-purple-900'
160
  }
 
166
  export const homeBackgroundImage = {
167
  image: 'ai.png',
168
  attribution: 'Jamillah Knowles & Digit | BetterImagesOfAI, CC-BY-4.0',
169
+ altText: 'The image is of the exterior of an impression of a building. People and figures can be seen inside and outside of the building. There are clouds of network connections all around the building and inside. It relates to the digital networked workplace.',
170
  sourceUrl: 'https://betterimagesofai.org/images?artist=JamillahKnowles&title=BuildingCorp'
171
+ };
172
+
173
+ export const overallBackgroundImage = {
174
+ image: 'background_ai.png',
175
+ attribution: 'Jamillah Knowles & Digit | BetterImagesOfAI, CC-BY-4.0',
176
+ altText: 'A pink and yellow abstract image of an office with people working, chatting and walking around. Above their heads are clouds of network connections. It was painted with guache and drawn with pencils.',
177
+ sourceUrl: 'https://betterimagesofai.org/images?artist=JamillahKnowles&title=PinkOffice'
178
  };
js/data/team.js CHANGED
@@ -28,8 +28,8 @@ export const teamMembers = [
28
 
29
  // Tag data for team member areas of expertise
30
  export const teamTagData = {
31
- 'efficiency': { name: 'Efficiency, Costs & Environment', id: 'efficiency' },
32
- 'personal': { name: 'Consent & Personal Interactions', id: 'personal' },
33
- 'rights': { name: 'Rights & Regulation', id: 'rights' },
34
- 'ecosystems': { name: 'Socio-economic & Technical Ecosystems', id: 'ecosystems' }
35
  };
 
28
 
29
  // Tag data for team member areas of expertise
30
  export const teamTagData = {
31
+ 'efficiency': { name: 'Efficiency, Costs & Environment' },
32
+ 'personal': { name: 'Consent & Personal Interactions' },
33
+ 'rights': { name: 'Rights & Regulation' },
34
+ 'ecosystems': { name: 'Socio-economic & Technical Ecosystems' }
35
  };