Skip to content

Commit

Permalink
Added Ignite to events, updating qualcomm onnx models.
Browse files Browse the repository at this point in the history
  • Loading branch information
MaanavD committed Oct 23, 2024
1 parent e6ccef2 commit bfb4d0f
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 4 deletions.
26 changes: 25 additions & 1 deletion src/routes/events/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@
import converttoort from '../../images/events/converttoort.jpg';
import Event from './event-post.svelte';
import Videogallery from '../components/videogallery.svelte';
let upcomingEvents = [
{
title: 'Microsoft Ignite',
date: 'November 19th, 2024',
blurb:
'Discover solutions that help modernize and manage intelligent apps, safeguard data, accelerate productivity, and expand your services, while connecting with partners and growing your community or business.',
linkarr: [
{ name: 'Event Page', link: 'https://ignite.microsoft.com/en-US/home' },
{ name: 'Boost Edge AI (IRL)', link: 'https://ignite.microsoft.com/en-US/sessions/THR602?source=sessions' },
],
image: converttoort,
imagealt: 'Slide detailing how to convert from various frameworks to ONNX, then deploy anywhere using ORT'
},]
let events = [
{
title: 'ONNX Runtime Community Meetup',
Expand Down Expand Up @@ -61,7 +74,18 @@
</div>
<div class="pt-5 mx-4 md:mx-10">
<h3 class="text-3xl pb-8">Upcoming Events</h3>
<div class="grid gap-4 grid-cols-1 lg:grid-cols-3" />
<div class="grid gap-4 grid-cols-1" >
{#each upcomingEvents as event, i}
<Event
title={event.title}
description={event.blurb}
date={event.date}
linkarr={event.linkarr}
image={event.image}
imagealt={event.imagealt}
/>
{/each}
</div>
</div>
<div class="mx-4 md:mx-10">
<h3 class="text-3xl pb-8">Past Events</h3>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/events/event-post.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</p>
<div class="card-actions">
{#each linkarr as item}
<a class="btn btn-secondary rounded-sm" href={item.link} target="_blank">{item.name}</a>
<a class="btn btn-primary rounded-sm" href={item.link} target="_blank">{item.name}</a>
{/each}
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/routes/models/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
imagealt: 'ONNX Model Zoo'
},
{
title: 'AI Hub (Qualcomm)',
title: 'Qualcomm ONNX Models (HuggingFace)',
description:
'Discover ONNX-compatible AI models optimized for Qualcomm hardware on the AI Hub.',
url: 'https://aihub.qualcomm.com/models',
url: 'https://huggingface.co/qualcomm',
image: 'https://logosandtypes.com/wp-content/uploads/2020/08/qualcomm.svg',
imagealt: 'Qualcomm AI Hub Logo'
},
Expand Down

0 comments on commit bfb4d0f

Please sign in to comment.