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 all commits
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
Binary file added src/images/events/ignite2024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 26 additions & 1 deletion src/routes/events/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,22 @@
import { onMount } from 'svelte';
import ImageEvents from '../../images/undraw/image_events.svelte';
import converttoort from '../../images/events/converttoort.jpg';
import ignite2024 from '../../images/events/ignite2024.png';
import Event from './event-post.svelte';
import Videogallery from '../components/videogallery.svelte';
let upcomingEvents = [
{
title: 'ONNX Runtime at Microsoft Ignite Conference',
date: 'November 19th, 2024',
blurb:
'ONNX Runtime will be used in the Boost Edge AI session at Microsoft Ignite 2024, as well as behind the scenes as an inference runtime in many other sessions. ONNX Runtime, equipped with NPU acceleration, enables developers to efficiently deploy state-of-the-art models on edge devices including mobile phones.',
linkarr: [
{ name: 'Microsoft Ignite Page', link: 'https://ignite.microsoft.com/en-US/home' },
{ name: 'Boost Edge AI (IRL Session)', link: 'https://ignite.microsoft.com/en-US/sessions/THR602?source=sessions' },
],
image: ignite2024,
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 +75,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
18 changes: 9 additions & 9 deletions src/routes/models/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
<script>
let modelhubs = [
{
title: 'ONNX Community (HuggingFace)',
title: 'ONNX Community (hosted on Hugging Face)',
description:
'Join the ONNX community on Hugging Face to access, share, and discuss ONNX models for NLP, vision, and more.',
'Access, share, and discuss ONNX models published to Hugging Face by members of the ONNX Community.',
url: 'https://huggingface.co/onnx-community',
image: 'https://huggingface.co/front/assets/huggingface_logo-noborder.svg',
imagealt: 'Hugging Face Logo'
},
{
title: 'Model Zoo (ONNX)',
title: 'Model Zoo (hosted on ONNX website)',
description:
'Explore a wide variety of pre-trained ONNX models for deep learning tasks across multiple domains.',
'Explore a wide variety of pre-trained ONNX models curated by the ONNX community.',
url: 'https://onnx.ai/models/',
image: 'https://onnx.ai/models/assets/logos/onnx.png',
imagealt: 'ONNX Model Zoo'
},
{
title: 'AI Hub (Qualcomm)',
title: 'Qualcomm ONNX Models (hosted on Hugging Face)',
description:
'Discover ONNX-compatible AI models optimized for Qualcomm hardware on the AI Hub.',
url: 'https://aihub.qualcomm.com/models',
'Discover ONNX-compatible models optimized for Qualcomm hardware on Hugging Face.',
url: 'https://huggingface.co/qualcomm',
image: 'https://logosandtypes.com/wp-content/uploads/2020/08/qualcomm.svg',
imagealt: 'Qualcomm AI Hub Logo'
},
{
title: 'ONNX Models (HuggingFace)',
title: 'All ONNX Models on Hugging Face',
description:
'Find trending ONNX models for natural language processing, computer vision, and more on Hugging Face.',
'Access all ONNX models available on the Hugging Face Model Hub here!',
url: 'https://huggingface.co/models?library=onnx&sort=trending',
image: 'https://huggingface.co/front/assets/huggingface_logo-noborder.svg',
imagealt: 'Hugging Face Logo'
Expand Down
Loading