Upload 5 files
Browse files- js/data/areas.js +159 -0
- js/data/artifacts.js +39 -0
- js/data/press.js +58 -0
- js/data/resources.js +51 -0
- js/data/team.js +35 -0
js/data/areas.js
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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.',
|
| 8 |
+
openness: 'Open development of AI systems greatly facilitates transparency on the training and deployment costs. Users and developers of open models typically have stronger incentives to favor and invest in efficiency.',
|
| 9 |
+
color: 'bg-green-100 text-green-800',
|
| 10 |
+
primaryColor: 'green',
|
| 11 |
+
colors: {
|
| 12 |
+
light: 'bg-green-50 text-green-700',
|
| 13 |
+
medium: 'bg-green-100 text-green-800',
|
| 14 |
+
dark: 'bg-green-200 text-green-900',
|
| 15 |
+
gradient: 'from-green-50 to-green-100 hover:from-green-100 hover:to-green-200 border-green-200 hover:border-green-300 text-green-900'
|
| 16 |
+
},
|
| 17 |
+
image: 'efficiency.png',
|
| 18 |
+
imageAttribution: 'Hanna Barakat & Archival Images of AI + AIxDESIGN | BetterImagesOfAI, CC-BY-4.0',
|
| 19 |
+
imageAltText: 'The image shows a surreal landscape with vast green fields extending toward distant mountains under a cloudy sky. Embedded in the fields are digital circuit patterns, resembling an intricate network of blue lines, representing a technological infrastructure. Five large computer monitors with keyboards are placed in a row, each with a Navajo woman sitting in front, weaving the computers. In the far distance, a cluster of teepees is visible.',
|
| 20 |
+
imageSourceUrl: 'https://betterimagesofai.org/images?artist=HannaBarakat&title=WeavingWires2',
|
| 21 |
+
subAreas: {
|
| 22 |
+
environment: {
|
| 23 |
+
name: 'Environmental impact across the supply chains',
|
| 24 |
+
description: 'The environmental impact of AI systems across their supply chains, including the energy used, the materials used, and the waste generated.',
|
| 25 |
+
openness: 'Transparency into not just the model weights and software, but also the supply chain, hardware, and environmental externalities of data centers is necessary to understand the entire environmental impact of AI systems.',
|
| 26 |
+
color: 'bg-emerald-100 text-emerald-800',
|
| 27 |
+
gradient: 'from-emerald-50 to-emerald-100 hover:from-emerald-100 hover:to-emerald-200 border-emerald-200 hover:border-emerald-300 text-emerald-900'
|
| 28 |
+
},
|
| 29 |
+
measuring: {
|
| 30 |
+
name: 'Measuring energy and financial costs',
|
| 31 |
+
description: 'Methodologies, standards, and transparency on the energy and financial costs of AI systems.',
|
| 32 |
+
openness: 'Access to open models, training and fine-tuning data, and open-source software supports reproducible research into the energy and financial costs of AI systems.',
|
| 33 |
+
color: 'bg-lime-100 text-lime-800',
|
| 34 |
+
gradient: 'from-lime-50 to-lime-100 hover:from-lime-100 hover:to-lime-200 border-lime-200 hover:border-lime-300 text-lime-900'
|
| 35 |
+
},
|
| 36 |
+
efficient: {
|
| 37 |
+
name: 'Making AI less compute-intensive',
|
| 38 |
+
description: 'Efforts to reduce the compute-intensive nature of AI systems, and ways to make them more compute-efficient.',
|
| 39 |
+
openness: 'Adopters of open models have stronger incentives to favor and invest in efficiency, and access to fully open models supports the development of more efficient models and training and inference techniques.',
|
| 40 |
+
color: 'bg-teal-100 text-teal-800',
|
| 41 |
+
gradient: 'from-teal-50 to-teal-100 hover:from-teal-100 hover:to-teal-200 border-teal-200 hover:border-teal-300 text-teal-900'
|
| 42 |
+
},
|
| 43 |
+
},
|
| 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.',
|
| 51 |
+
openness: 'Openness at the level of a model\'s training data and of its inputs are necessary to support informed consent, and research on characterizing the different companionship and value dynamics of AI systems enables replicable research into those characteristics.',
|
| 52 |
+
color: 'bg-purple-100 text-purple-800',
|
| 53 |
+
primaryColor: 'purple',
|
| 54 |
+
colors: {
|
| 55 |
+
light: 'bg-purple-50 text-purple-700',
|
| 56 |
+
medium: 'bg-purple-100 text-purple-800',
|
| 57 |
+
dark: 'bg-purple-200 text-purple-900',
|
| 58 |
+
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'
|
| 59 |
+
},
|
| 60 |
+
image: 'personal.png',
|
| 61 |
+
imageAttribution: 'Kathryn Conrad | BetterImagesOfAI, CC-BY-4.0',
|
| 62 |
+
imageAltText: 'Students at computers with screens that include a representation of a retinal scanner with pixelation and binary data overlays and a brightly coloured datawave heatmap at the top.',
|
| 63 |
+
imageSourceUrl: 'https://betterimagesofai.org/images?artist=KathrynConrad&title=Datafication',
|
| 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 |
+
},
|
| 75 |
+
},
|
| 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.',
|
| 83 |
+
openness: 'Applications of existing regulation as well as the design of new ones to meet the challenges of AI technology require understanding how it works, the trade-offs it entails, and the space of technical interventions that are feasible. Open access to the technology supports independent research from stakeholders with different incentives from those of the largest developers.',
|
| 84 |
+
color: 'bg-indigo-100 text-indigo-800',
|
| 85 |
+
primaryColor: 'indigo',
|
| 86 |
+
colors: {
|
| 87 |
+
light: 'bg-indigo-50 text-indigo-700',
|
| 88 |
+
medium: 'bg-indigo-100 text-indigo-800',
|
| 89 |
+
dark: 'bg-indigo-200 text-indigo-900',
|
| 90 |
+
gradient: 'from-indigo-50 to-indigo-100 hover:from-indigo-100 hover:to-indigo-200 border-indigo-200 hover:border-indigo-300 text-indigo-900'
|
| 91 |
+
},
|
| 92 |
+
image: 'rights.png',
|
| 93 |
+
imageAttribution: 'Emily Rand & LOTI | BetterImagesOfAI, CC-BY-4.0',
|
| 94 |
+
imageAltText: 'Building blocks are overlayed with digital squares that highlight people living their day-to-day lives through windows. Some of the squares are accompanied by cursors.',
|
| 95 |
+
imageSourceUrl: 'https://betterimagesofai.org/images?artist=EmilyRand&title=AICity',
|
| 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 |
+
}
|
| 112 |
+
},
|
| 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.',
|
| 120 |
+
openness: 'Openness is an important factor in the diffusion of the technology, and enables a greater variety of actors to reliably assess its suitability and to adapt it to their specific contexts and requirements; as well as to understand the role of different resources and the consequences of their concentration among a few actors.',
|
| 121 |
+
color: 'bg-orange-100 text-orange-800',
|
| 122 |
+
primaryColor: 'orange',
|
| 123 |
+
colors: {
|
| 124 |
+
light: 'bg-orange-50 text-orange-700',
|
| 125 |
+
medium: 'bg-orange-100 text-orange-800',
|
| 126 |
+
dark: 'bg-orange-200 text-orange-900',
|
| 127 |
+
gradient: 'from-orange-50 to-orange-100 hover:from-orange-100 hover:to-orange-200 border-orange-200 hover:border-orange-300 text-orange-900'
|
| 128 |
+
},
|
| 129 |
+
image: 'ecosystems.png',
|
| 130 |
+
imageAttribution: 'Lone Thomasky & Bits&Bäume | BetterImagesOfAI, CC-BY-4.0',
|
| 131 |
+
imageAltText: 'A simplified illustration of urban life near the sea showing groups of people, buildings and bridges, as well as polluting power plants, opencast mining, exploitative work, data centres and wind power stations on a hill. Several small icons indicate destructive processes.',
|
| 132 |
+
imageSourceUrl: 'https://betterimagesofai.org/images?artist=LoneThomasky&title=DigitalSocietyBell',
|
| 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 |
+
}
|
| 149 |
+
},
|
| 150 |
+
imagePosition: 'right'
|
| 151 |
+
}
|
| 152 |
+
};
|
| 153 |
+
|
| 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 |
+
};
|
js/data/artifacts.js
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
// artifacts.js - Featured artifacts data
|
| 2 |
+
export const featuredArtifacts = [
|
| 3 |
+
{
|
| 4 |
+
title: "🌎 What kind of environmental impacts are AI companies disclosing? (And can we compare them?) 🌎",
|
| 5 |
+
date: "2025-09-01",
|
| 6 |
+
type: "blog",
|
| 7 |
+
description: "AI companies are beginning to disclose environmental metrics for their models, but inconsistent methodologies and incomplete data make meaningful comparisons impossible. Without standardized reporting of both intensity metrics and absolute totals, these disclosures risk misleading the public and obscuring the true scale of AI's environmental footprint. Transparent, comparable reporting must align with existing sustainability frameworks to prevent greenwashing and drive real accountability.",
|
| 8 |
+
areaTags: ["efficiency"],
|
| 9 |
+
subAreaTags: ["measuring"],
|
| 10 |
+
sourceUrl: "https://huggingface.co/blog/sasha/environmental-impact-disclosures"
|
| 11 |
+
},
|
| 12 |
+
{
|
| 13 |
+
title: "Advertisement, Privacy, and Intimacy: Lessons from Social Media for Conversational AI",
|
| 14 |
+
date: "2025-09-01",
|
| 15 |
+
type: "blog",
|
| 16 |
+
description: "As conversational AI systems become increasingly intimate and trusted, we risk repeating the privacy mistakes of social media—especially as advertising models threaten to monetize personal disclosures. Users intuitively trust AI as a private confidant, unaware that their most sensitive data may be harvested, analyzed, and exploited for commercial gain. Open-source alternatives offer a path toward transparent, user-centered AI that prioritizes privacy over profit.",
|
| 17 |
+
areaTags: ["personal"],
|
| 18 |
+
subAreaTags: ["interaction"],
|
| 19 |
+
sourceUrl: "https://huggingface.co/blog/giadap/privacy-conversational-ai"
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
title: "What Open-Source Developers Need to Know about the EU AI Act's Rules for GPAI Models",
|
| 23 |
+
date: "2025-08-04",
|
| 24 |
+
type: "blog",
|
| 25 |
+
description: "Open-source developers can navigate the EU AI Act's obligations for general-purpose AI models with targeted exemptions when releasing models under free and open-source licenses, avoiding redundant requirements like transparency documentation and EU representative appointments—while still needing to comply with copyright law and training data transparency.",
|
| 26 |
+
areaTags: ["rights"],
|
| 27 |
+
subAreaTags: ["specific", "open"],
|
| 28 |
+
sourceUrl: "https://huggingface.co/blog/yjernite/eu-act-os-guideai"
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
title: "Local Differences, Global Lessons: Insights from Organisation Policies for International Legislation",
|
| 32 |
+
date: "2025-03-05",
|
| 33 |
+
type: "paper",
|
| 34 |
+
description: "Organisational AI policies in newsrooms and universities reveal practical, domain-specific approaches to managing risks like bias, privacy, and environmental impact — areas often underaddressed in top-down regulations like the EU AI Act. These bottom-up guidelines offer actionable insights on AI literacy, disclosure, and accountability that can inform more adaptive and effective global AI governance. The study argues for integrating real-world organisational practices into international regulatory frameworks to bridge implementation gaps.",
|
| 35 |
+
areaTags: ["ecosystems"],
|
| 36 |
+
subAreaTags: ["usage"],
|
| 37 |
+
sourceUrl: "https://arxiv.org/abs/2503.05737"
|
| 38 |
+
}
|
| 39 |
+
];
|
js/data/press.js
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
export const pressMentions = [
|
| 2 |
+
{
|
| 3 |
+
title: 'Is AI A Good Companion? INTIMA Tests This Comprehensively',
|
| 4 |
+
date: '2025-09-10',
|
| 5 |
+
source: 'Forbes',
|
| 6 |
+
sourceUrl: 'https://www.forbes.com/sites/johnwerner/2025/09/10/is-ai-a-good-companion-intima-tests-this-comprehensively/',
|
| 7 |
+
areaTags: ['personal'],
|
| 8 |
+
subAreaTags: ['interaction'],
|
| 9 |
+
},
|
| 10 |
+
{
|
| 11 |
+
title: 'The problem of AI chatbots telling people what they want to hear',
|
| 12 |
+
date: '2025-09-03',
|
| 13 |
+
source: 'Financial Times',
|
| 14 |
+
sourceUrl: 'https://www.ft.com/content/72aa8c32-1fb5-49b7-842c-0a8e4766ac84',
|
| 15 |
+
areaTags: ['personal'],
|
| 16 |
+
subAreaTags: ['interaction'],
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
title: 'Should AI flatter us, fix us, or just inform us?',
|
| 20 |
+
date: '2025-08-19',
|
| 21 |
+
source: 'MIT Technology Review',
|
| 22 |
+
sourceUrl: 'https://www.technologyreview.com/2025/08/19/1122021/should-ai-flatter-us-fix-us-or-just-inform-us/',
|
| 23 |
+
areaTags: ['personal'],
|
| 24 |
+
subAreaTags: ['interaction'],
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
title: ' Will AI really wipe out white collar jobs? Tech insiders are split ',
|
| 28 |
+
date: '2025-07-21',
|
| 29 |
+
source: 'CNN',
|
| 30 |
+
sourceUrl: 'https://www.cnn.com/2025/07/21/tech/ai-replace-human-workers-tech-insiders-split',
|
| 31 |
+
areaTags: ['ecosystems'],
|
| 32 |
+
subAreaTags: ['labor'],
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
title: 'How Much Energy Does Your AI Prompt Use? I Went to a Data Center to Find Out.',
|
| 36 |
+
date: '2025-06-26',
|
| 37 |
+
source: 'Wall Street Journal',
|
| 38 |
+
sourceUrl: 'hhttps://www.wsj.com/tech/ai/ai-prompt-video-energy-electricity-use-046766d6',
|
| 39 |
+
areaTags: ['efficiency'],
|
| 40 |
+
subAreaTags: ['measuring', 'environment'],
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
title: 'Study reveals how much energy AI uses to answer your questions',
|
| 44 |
+
date: '2025-06-25',
|
| 45 |
+
source: 'CNN',
|
| 46 |
+
sourceUrl: 'https://www.cnn.com/2025/06/22/climate/ai-prompt-carbon-emissions-environment-wellness',
|
| 47 |
+
areaTags: ['efficiency'],
|
| 48 |
+
subAreaTags: ['measuring', 'efficient'],
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
title: 'European tech’s most influential lobbyists',
|
| 52 |
+
date: '2025-04-17',
|
| 53 |
+
source: 'Sifted',
|
| 54 |
+
sourceUrl: 'https://sifted.eu/articles/european-tech-startups-lobbyists',
|
| 55 |
+
areaTags: ['rights'],
|
| 56 |
+
subAreaTags: ['general', 'open'],
|
| 57 |
+
},
|
| 58 |
+
];
|
js/data/resources.js
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
export const sampleResources = [
|
| 2 |
+
{
|
| 3 |
+
title: 'Archive Explorer: AI, Labor and the Economy 2022-2025',
|
| 4 |
+
type: 'space',
|
| 5 |
+
date: '2025-09-04',
|
| 6 |
+
description: 'The Labor Archive Explorer is a tool for exploring a dataset of news articles and other writings about AI, labor, and the economy from the release of ChatGPT to July 2025.',
|
| 7 |
+
url: 'https://huggingface.co/spaces/hfmlsoc/labor-archive-explorer',
|
| 8 |
+
areaTags: ['ecosystems'],
|
| 9 |
+
subAreaTags: ['labor'],
|
| 10 |
+
embedUrl: "https://hfmlsoc-labor-archive-explorer.static.hf.space"
|
| 11 |
+
},
|
| 12 |
+
{
|
| 13 |
+
title: 'INTIMA Companionship Benchmark Dataset',
|
| 14 |
+
type: 'dataset',
|
| 15 |
+
date: '2025-08-04',
|
| 16 |
+
description: 'INTIMA (Interactions and Machine Attachment) is a benchmark designed to evaluate companionship behaviors in large language models (LLMs). It measures whether AI systems reinforce, resist, or remain neutral in response to emotionally and relationally charged user inputs.',
|
| 17 |
+
url: 'https://huggingface.co/datasets/AI-companionship/INTIMA',
|
| 18 |
+
areaTags: ['personal'],
|
| 19 |
+
subAreaTags: ['interaction'],
|
| 20 |
+
embedUrl: "https://huggingface.co/datasets/AI-companionship/INTIMA/embed/viewer/default/train"
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
title: 'EU AI Act: Developer Requirements Flowchart',
|
| 24 |
+
type: 'space',
|
| 25 |
+
date: '2025-08-01',
|
| 26 |
+
description: 'A guide for open and open-source developers to understand their requirements under the EU AI Act.',
|
| 27 |
+
url: 'https://huggingface.co/spaces/hfmlsoc/os_gpai_guide_flowchart',
|
| 28 |
+
areaTags: ['rights'],
|
| 29 |
+
subAreaTags: ['specific', 'open'],
|
| 30 |
+
embedUrl: "https://hfmlsoc-os-gpai-guide-flowchart.static.hf.space"
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
title: 'Environmental Transparency Explorer Tool 🕵️♀️🌎',
|
| 34 |
+
type: 'space',
|
| 35 |
+
date: '2025-06-18',
|
| 36 |
+
description: 'A tool for exploring the the data from \'Misinformation by Omission: The Need for More Environmental Transparency in AI\' showing trends in environmental transparency over time.',
|
| 37 |
+
url: 'https://huggingface.co/spaces/sasha/environmental-transparency',
|
| 38 |
+
areaTags: ['efficiency'],
|
| 39 |
+
subAreaTags: ['measuring'],
|
| 40 |
+
embedUrl: "https://sasha-environmental-transparency.hf.space"
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
title: 'CIVICS Civics Benchmark Dataset',
|
| 44 |
+
type: 'dataset',
|
| 45 |
+
date: '2024-04-29',
|
| 46 |
+
description: '“CIVICS: Culturally-Informed & Values-Inclusive Corpus for Societal Impacts” is a dataset designed to evaluate the social and cultural variation of Large Language Models (LLMs) towards socially sensitive topics across multiple languages and cultures. The hand-crafted, multilingual dataset of statements addresses value-laden topics, including LGBTQI rights, social welfare, immigration, disability rights, and surrogacy. CIVICS is designed to elicit responses from LLMs to shed light on how values encoded in their parameters shape their behaviors.',
|
| 47 |
+
url: 'https://huggingface.co/datasets/llm-values/CIVICS',
|
| 48 |
+
areaTags: ['personal'],
|
| 49 |
+
subAreaTags: ['interaction']
|
| 50 |
+
},
|
| 51 |
+
];
|
js/data/team.js
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
// team.js - Team member data
|
| 2 |
+
export const teamMembers = [
|
| 3 |
+
{
|
| 4 |
+
name: 'Yacine Jernite',
|
| 5 |
+
role: 'Head of ML & Society',
|
| 6 |
+
username: 'yjernite',
|
| 7 |
+
tags: ['rights', 'ecosystems']
|
| 8 |
+
},
|
| 9 |
+
{
|
| 10 |
+
name: 'Sasha Luccioni',
|
| 11 |
+
role: 'AI & Climate Lead',
|
| 12 |
+
username: 'sasha',
|
| 13 |
+
tags: ['efficiency']
|
| 14 |
+
},
|
| 15 |
+
{
|
| 16 |
+
name: 'Giada Pistilli',
|
| 17 |
+
role: 'Principal Ethicist',
|
| 18 |
+
username: 'giadap',
|
| 19 |
+
tags: ['personal']
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
name: 'Lucie-Aimée Kaffee',
|
| 23 |
+
role: 'Applied Policy Researcher, EU Policy',
|
| 24 |
+
username: 'frimelle',
|
| 25 |
+
tags: ['ecosystems', 'rights']
|
| 26 |
+
}
|
| 27 |
+
];
|
| 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 |
+
};
|