Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Ignite to events, updating qualcomm onnx models. #22564

Merged
merged 2 commits into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading