Skip to content

Commit

Permalink
Merge pull request #33 from Guysnacho/24/FinalProgramDraft
Browse files Browse the repository at this point in the history
Add hackathon details and jump buttons
  • Loading branch information
Guysnacho authored Mar 22, 2024
2 parents 48d0f6f + d764735 commit 15039c3
Showing 1 changed file with 82 additions and 5 deletions.
87 changes: 82 additions & 5 deletions src/routes/program/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,22 @@
which cover exciting and novel developments in the field.
</p>
<p class="text-center">
We will touch on machine learning, precision medicine, and more. Additional details like
speakers for specific events and topics will be released as the conference approaches!
We will touch on machine learning, precision medicine, and more. For a full view of the
program or details on the 2024 MCBIOS Hackathon, scroll down a bit!
</p>
<div class="flex justify-center">
<a href="/program#hackathon" class="btn btn-lg variant-ringed-primary my-3"
>2024 MCBIOS Hackathon</a
>
</div>
<div class="flex justify-center">
<a href="/program#full-program" class="btn btn-lg variant-ringed-primary my-3">Full Program</a
>
</div>
</div>
</div>
<div class="w-5/6 mx-auto my-24">
<div class="w-5/6 mx-auto my-16 space-y-4">
<h3 class="h3 text-3xl text-center mb-12">Program at a Glance</h3>
<TabGroup justify="justify-center">
<Tab bind:group={tabSet} name="Day 1" value={0}><span>March 22</span></Tab>
<Tab bind:group={tabSet} name="Day 2" value={1}><span>March 23</span></Tab>
Expand Down Expand Up @@ -106,8 +116,71 @@
<hr class="!border-t-8 !border-double" />
</div>

<div class="w-5/6 md:w4-/6 lg:w-2/3 xl:w-1/2 mx-auto my-24">
<h3 class="h3 text-3xl text-center">Full Program</h3>
<div class="w-5/6 md:w4-/6 lg:w-2/3 xl:w-1/2 mx-auto my-12">
<a name="hackathon" class="mb-8"
><h3 class="h3 text-3xl text-center mb-12">MCBIOS Hackathon</h3></a
>
<section class="space-y-4">
<p>
We are pleased to announce the 2024 MCBIOS Hackathon which is open to all attendees. The
effort provides an opportunity to sharpen your skills on important data while also learning
from your peers in a friendly collegial environment. This year’s hackathon will leverage the
ongoing <a
href="https://moody-challenge.physionet.org"
target="_blank"
rel="noopener noreferrer"
class="text-amber-300 hover:text-amber-600 active:text-purple-800"
>George B. Moody PhysioNet Challenge</a
> which “invites teams to develop algorithms for digitizing and classifying electrocardiograms
(ECGs) captured from images or paper printouts”
</p>
<p>From the Moody Challenge website:</p>
<p class="blockquote">
“Despite recent advances in digital ECG devices, paper or physical ECGs remain common,
especially in the Global South. These paper ECGs document the history and diversity of
cardiovascular diseases (CVDs), and algorithms that can digitize and classify these images
have the potential to improve our understanding and treatment of CVDs, especially for
underrepresented and underserved populations” <br /><br />
We ask participants to design and implement working, open-source algorithms that, based only on
the provided ECG images, reconstruct the waveforms and/or classify or diagnose the images. The
teams with the best scores for these tasks on the hidden test set win the Challenge”
</p>
<p>
While official registration into the larger, ongoing Moody Physionet Challenge is not required
it is helpful to track your team name and members.
</p>
<p>
The MCBIOS Hackathon is an economized version of the Moody Challenge in terms of duration in
recognition that participants will also wish to attend conference events and experience
networking opportunities. The conference will provide a breakout room for use by hackathon
participants and teams which is in close proximity to the main meeting room.
</p>
<p>
Attendees will develop code using personally available computational resources which may (or
not) include use of GPUs although your <a
href="https://moody-challenge.physionet.org/2024/submissions"
target="_blank"
class="text-amber-300 hover:text-amber-600 active:text-purple-800">submission</a
> should make clear if your code is reliant upon that.
</p>
<p>
To get started please consult the <a
href="https://moody-challenge.physionet.org/2024/#rules"
class="text-amber-300 hover:text-amber-600 active:text-purple-800">“rules”</a
> section for specifics on objectives, data sources, deliverables and how to appropriately format
your submission. The deadline for your submission is 9PM on Saturday March 23rd after which evaluation
will take place followed by formal recognition of winners on Sunday the 24th.
</p>
</section>
</div>

<div class="w-1/2 m-auto my-12">
<hr class="!border-t-8 !border-double" />
</div>

<div class="w-5/6 md:w4-/6 lg:w-2/3 xl:w-1/2 mx-auto my-12">
<a name="full-program" class="mb-8"><h3 class="h3 text-3xl text-center mb-12">Full Program</h3></a
>
<svelte:component
this={PdfViewer}
url={pdfUrl}
Expand All @@ -117,3 +190,7 @@
showButtons={['navigation', 'zoom', 'download']}
/>
</div>

<div class="w-1/2 m-auto my-12">
<hr class="!border-t-8 !border-double" />
</div>

0 comments on commit 15039c3

Please sign in to comment.