Skip to content

Commit

Permalink
Updated alt text
Browse files Browse the repository at this point in the history
  • Loading branch information
MaanavD committed Nov 15, 2023
1 parent 59b7889 commit 4f87fbf
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 13 deletions.
28 changes: 16 additions & 12 deletions src/routes/blogs/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,27 +26,30 @@
{
title: 'Accelerating LLaMA-2 Inference with ONNX Runtime',
date: 'November 14th, 2023',
blurb:
'Learn how ONNX Runtime can speed up LLaMA-2 inference by up to 4.5X',
blurb: 'Learn how ONNX Runtime can speed up LLaMA-2 inference by up to 4.5X',
link: 'blogs/accelerating-llama-2',
image: LlamaImage
image: LlamaImage,
imgalt: 'LLaMA-2 e2e throughput'
},
{
title: 'Run PyTorch models on the edge',
date: 'October 12th, 2023',
blurb:
'Everything you need to know about running PyTorch models on the edge with ONNX Runtime.',
link: 'blogs/pytorch-on-the-edge',
image: 'https://onnxruntime.ai/_app/immutable/assets/pytorch-on-the-edge-with-ort.cdaa9c84.png'
image:
'https://onnxruntime.ai/_app/immutable/assets/pytorch-on-the-edge-with-ort.cdaa9c84.png',
imgalt: 'Run PyTorch models on the edge'
},
{
       title: 'Accelerating over 130,000 Hugging Face models with ONNX Runtime',
    date: 'October 4th, 2023',
    blurb:
        'Learn more on how ONNX Runtime helps users accelerate open source machine learning models from Hugging Face.',
    link: 'https://cloudblogs.microsoft.com/opensource/2023/10/04/accelerating-over-130000-hugging-face-models-with-onnx-runtime/',
    image: HFImage
    },
title: 'Accelerating over 130,000 Hugging Face models with ONNX Runtime',
date: 'October 4th, 2023',
blurb:
'Learn more on how ONNX Runtime helps users accelerate open source machine learning models from Hugging Face.',
link: 'https://cloudblogs.microsoft.com/opensource/2023/10/04/accelerating-over-130000-hugging-face-models-with-onnx-runtime/',
image: HFImage,
imgalt: 'Hugging Face models with ONNX Runtime'
}
];
let blogs = [
{
Expand All @@ -55,7 +58,8 @@
blurb:
'This blog presents technical details of On-Device training with ONNX Runtime. It explains how On-Device Training works and what are the different steps and artifacts involved in the training process. This information will help you train your models on edge devices.',
link: 'https://cloudblogs.microsoft.com/opensource/2023/07/05/on-device-training-with-onnx-runtime-a-deep-dive/',
image: 'https://cloudblogs.microsoft.com/opensource/wp-content/uploads/sites/37/2023/06/Open-Source-1.webp'
image:
'https://cloudblogs.microsoft.com/opensource/wp-content/uploads/sites/37/2023/06/Open-Source-1.webp'
},
{
title:
Expand Down
3 changes: 2 additions & 1 deletion src/routes/blogs/blog-post-featured.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
export let date: string;
export let link: string;
export let image: string;
export let imgalt: string;
let handleEnter = (e: any) => {
anime({
targets: e.target,
Expand All @@ -31,7 +32,7 @@
<div class="card-body">
<h2 class="card-title">{title}</h2>
<p>{description}</p>
<img src={image}/>
<img src={image} alt={imgalt}/>
<div class="text-right text-blue-500">
{date}
</div>
Expand Down

0 comments on commit 4f87fbf

Please sign in to comment.