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 raji's blog link. #22909

Merged
merged 1 commit into from
Nov 20, 2024
Merged
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
15 changes: 13 additions & 2 deletions src/routes/blogs/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import OliveCli from '../../images/blogs/olive-flow.png';
import QuantizeFinetune from '../../images/blogs/Quantize-finetune.jpg';
import MultiLoraThumbnail from '../../images/blogs/multilora.png';
import ORTLogo from '../../images/ONNX-Icon.svg';
onMount(() => {
anime({
targets: '.border-primary',
Expand Down Expand Up @@ -50,6 +51,16 @@
dispatch('switchTab', tab);
}
let featuredblog = [
{
title:
'Cross-Platform Edge AI Made Easy with ONNX Runtime',
date: '19th November, 2024',
blurb:
"Driven by the growing demand for user privacy, real-time performance, and cost efficiency, edge AI is transforming the AI landscape. At Ignite, we're excited to announce four new features in the ONNX Runtime ecosystem designed to make edge AI more accessible.",
link: 'https://techcommunity.microsoft.com/blog/aiplatformblog/cross-platform-edge-ai-made-easy-with-onnx-runtime/4303521',
image: ORTLogo,
imgalt: 'ONNX Runtime Logo'
},
{
title:
'Announcing MultiLoRA with ONNX Runtime: Revolutionizing AI Customization',
Expand All @@ -70,6 +81,8 @@
image: QuantizeFinetune,
imgalt: 'Quantize or finetune first for better model performance?'
},
];
let blogs = [
{
title:
'Scribble to Erase on Goodnotes for Windows, Web, and Android, Powered by ONNX Runtime',
Expand All @@ -80,8 +93,6 @@
image: GoodnotesThumbnail,
imgalt: 'Scribble to Erase feature on Goodnotes for Windows, Web, and Android'
},
];
let blogs = [
{
title: 'Democratizing AI Model optimization with the new Olive CLI',
date: 'November 11th, 2024',
Expand Down
Loading