Skip to content

Commit

Permalink
Update images and links
Browse files Browse the repository at this point in the history
  • Loading branch information
kunal-vaishnavi committed Nov 15, 2023
1 parent 1abae98 commit 59b7889
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 4 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/blogs/hugging-face-blog-img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 21 additions & 3 deletions src/routes/blogs/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
import anime from 'animejs';
import { onMount } from 'svelte';
import ImageBlogs from '../../images/undraw/image_blogs.svelte';
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';
onMount(() => {
anime({
targets: '.border-primary',
Expand All @@ -21,6 +23,14 @@
});
});
let featuredblog = [
{
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',
link: 'blogs/accelerating-llama-2',
image: LlamaImage
},
{
title: 'Run PyTorch models on the edge',
date: 'October 12th, 2023',
Expand All @@ -29,6 +39,16 @@
link: 'blogs/pytorch-on-the-edge',
image: 'https://onnxruntime.ai/_app/immutable/assets/pytorch-on-the-edge-with-ort.cdaa9c84.png'
},
{
       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
    },
];
let blogs = [
{
title: 'On-Device Training with ONNX Runtime: A deep dive',
date: 'July 5th, 2023',
Expand All @@ -45,9 +65,7 @@
'Learn how ONNX Runtime accelerates Whisper and makes it easy to deploy on desktop, mobile, in the cloud, and even in the browser.',
link: 'https://medium.com/microsoftazure/build-and-deploy-fast-and-portable-speech-recognition-applications-with-onnx-runtime-and-whisper-5bf0969dd56b',
image: 'https://miro.medium.com/v2/resize:fit:1100/format:webp/1*DJH8_6GS06-N32tkVhdTOw.png'
}
];
let blogs = [
},
{
title: 'On-Device Training: Efficient training on the edge with ONNX Runtime',
date: 'May 31st, 2023',
Expand Down
2 changes: 1 addition & 1 deletion src/routes/blogs/accelerating-llama-2/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
</p>

<figure class="px-10 pt-4">
<center> <img src={figure4} alt="70B Llama2 Model Throughput" width="65%" height="65%"/> </center>
<img src={figure4} alt="70B Llama2 Model Throughput" class="w-3/5 mx-auto"/>
<figcaption class="mt-2 mb-4 text-center">
Figure 4: 70B Llama2 Model Throughput
</figcaption>
Expand Down

0 comments on commit 59b7889

Please sign in to comment.