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

Update with web training blog in featured blogs. #19506

Merged
merged 2 commits into from
Feb 14, 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/blogs/webtraining_blog_thumbnail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 14 additions & 4 deletions src/routes/blogs/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import HFImage from '../../images/blogs/hugging-face-blog-img.png';
import LlamaImage from '../../images/blogs/accelerating-llama-2/Figure1-LLaMA-2-7B-E2E-Throughput.png';
import SDXLTurboImage from '../../images/blogs/sdxl_blog_thumbnail.png';
import WebTrainingImage from '../../images/blogs/webtraining_blog_thumbnail.png';
onMount(() => {
anime({
targets: '.border-primary',
Expand All @@ -24,6 +25,15 @@
});
});
let featuredblog = [
{
title: 'On-Device Training: Training a model in browser',
date: 'February 6th, 2024',
blurb:
'Want to do ML training for your website in-browser? Learn more about what web training with ONNX Runtime has to offer in our blog below and experiment with your own applications through our easy-to-follow tutorials and demo.',
link: 'https://cloudblogs.microsoft.com/opensource/2024/02/06/on-device-training-training-a-model-in-browser',
image: WebTrainingImage,
imgalt: 'Components of the onnxruntime-web JS package'
},
{
title: 'Accelerating SD Turbo and SDXL Turbo Inference with ONNX Runtime and Olive',
date: 'January 15th, 2024',
Expand All @@ -40,7 +50,9 @@
link: 'blogs/accelerating-llama-2',
image: LlamaImage,
imgalt: 'LLaMA-2 e2e throughput'
},
}
];
let blogs = [
{
title: 'Run PyTorch models on the edge',
date: 'October 12th, 2023',
Expand All @@ -50,9 +62,7 @@
image:
'https://onnxruntime.ai/_app/immutable/assets/pytorch-on-the-edge-with-ort.cdaa9c84.png',
imgalt: 'Run PyTorch models on the edge'
}
];
let blogs = [
},
{
title: 'Accelerating over 130,000 Hugging Face models with ONNX Runtime',
date: 'October 4th, 2023',
Expand Down
Loading