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

Updated pages: 

https://maanavd.github.io/onnxruntime/models

https://maanavd.github.io/onnxruntime/events
This commit is contained in:
Maanav Dalal 2024-10-25 16:26:17 -07:00 committed by GitHub
parent abfe86411c
commit 5775e39106
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 36 additions and 11 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

View file

@ -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',
@ -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>

View file

@ -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>

View file

@ -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'