Skip to content

Commit

Permalink
add holistic ai x uclaisoc hackathon
Browse files Browse the repository at this point in the history
  • Loading branch information
levon-d committed Nov 20, 2024
1 parent 0cd33ff commit a3c1c65
Show file tree
Hide file tree
Showing 5 changed files with 149 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,16 @@ const config = {
label: 'Newsletter 🗞️',
position: 'right',
},
{
to: '/our-initiatives/holistic-ai-hackathon',
label: 'Holistic AI Hackathon',
position: 'left',
},
{
href: 'https://dashboard.mailerlite.com/forms/364819/102382926138704937/share',
label: 'Newsletter 🗞️',
position: 'right',
},
{
href: 'https://doxaai.com/',
label: 'DOXA',
Expand Down Expand Up @@ -159,6 +169,10 @@ const config = {
label: 'Journal Club',
to: '/our-initiatives/journal-club',
},
{
label: 'Holistic AI x UCL AI Society Hackathon',
to: '/our-initiatives/holistic-ai-hackathon',
},
],
},
{
Expand Down
46 changes: 46 additions & 0 deletions our-initiatives/holistic-ai.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
id: holistic-ai-hackathon
title: Holistic AI x UCL AI Society Hackathon
sidebar_label: Holistic AI x UCL AI Society Hackathon
---

<div className="hackathon-hero">
<div className="hackathon-logos">
<img src="/img/hackathon-announcement.png" alt="Holistic AI Logo" className="hackathon-logo" />
</div>

<div className="hackathon-details">
<h1>Holistic AI x UCL AI Society Hackathon</h1>
<div className="event-metadata">
<p>📅 <strong>Date:</strong> 23 — 24 November 2024</p>
<p>📍 <strong>Location:</strong> IOE, UCL's Faculty of Education and Society</p>
<p>🏢 <strong>Address:</strong> 20 Bedford Way, London WC1H 0AL, United Kingdom</p>
</div>

<div className="cta-button">
<a href="https://www.eventbrite.co.uk/e/holistic-ai-x-ucl-hackathon-tickets-1056612328919" className="button button--primary button--lg">
Register Now
</a>
</div>
</div>
</div>

## About the Event

An exciting opportunity for students to utilize our resource library at Holistic AI to drive create a multi-objective optimization pipeline that balances balance across all dimensions while maintaining overall system performance, or create models that combine bias while providing reliable, human-understandable explanations for user predictions.

Participants will demonstrate their ability to integrate advanced machine learning techniques with ethical considerations, ensuring that their models are trustworthy and effective in real-world classification tasks.

## The Tracks

<div className="tracks-container">
<div className="track-card">
<h3>Track 1</h3>
<p><strong>Multi-Objective Optimization for AI Trustworthiness in Tabular Data Classification</strong></p>
</div>

<div className="track-card">
<h3>Track 2</h3>
<p><strong>Building Trustworthy Models for Stereotype Classification in Text Data</strong></p>
</div>
</div>
89 changes: 89 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,92 @@
.footer {
--ifm-footer-background-color: #0B0B0B;
}

/* Holistic Ai hackathon */
.hackathon-hero {
background: var(--ifm-color-primary);
color: white;
padding: 4rem 2rem;
margin: 0 0 2rem 0;
width: 100%;
box-sizing: border-box;
border-radius: 10px
}

.hackathon-logos {
display: flex;
align-items: center;
gap: 2rem;
margin-bottom: 2rem;
flex-wrap: wrap;
}

.hackathon-logo {
height: 80px;
width: auto;
}

.hackathon-details {
max-width: 800px;
margin: 0 auto;
}

.event-metadata {
background: rgba(255, 255, 255, 0.1);
padding: 1.5rem;
border-radius: 8px;
margin: 2rem 0;
}

.tracks-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin: 2rem 0;
}

.track-card {
background: #ffffff;
padding: 1.5rem;
border-radius: 10px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
border: 2px solid black;
transition: all 0.2s ease;
}

.track-card:hover {
transform: translateY(-4px);
box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
border: 2px solid #333333;
}
.hackathon-hero .cta-button {
display: flex;
justify-content: center;
margin: 2rem 0;
}

.hackathon-hero .cta-button a {
background-color: white;
color: var(--ifm-color-primary);
padding: 0.8rem 2rem;
border-radius: 4px;
font-weight: 600;
text-decoration: none;
display: inline-block;
transition: all 0.2s ease;
}

.hackathon-hero .cta-button a:hover {
background-color: rgba(255, 255, 255, 0.9);
transform: translateY(-2px);
}

@media (max-width: 768px) {
.hackathon-hero {
padding: 2rem 1rem;
}

.hackathon-logo {
height: 60px;
}
}
Binary file added static/img/hackathon-announcement.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/holistic-ai-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a3c1c65

Please sign in to comment.