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 ORT Web info to HF landing page #18219

Merged
merged 1 commit into from
Nov 1, 2023
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
41 changes: 32 additions & 9 deletions src/routes/huggingface/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
<div class="col-span-2">
<h1 class="text-3xl pb-4">Export Hugging Face Models to ONNX</h1>
<p class="pb-4">
Hugging Face provides many options for exporting models to ONNX, including an ONNX Export Space
for PyTorch models from the Hugging Face Model Hub.
Hugging Face provides many options for exporting models to ONNX, including an ONNX Export
Space for PyTorch models from the Hugging Face Model Hub.
sophies927 marked this conversation as resolved.
Show resolved Hide resolved
</p>
<a href="https://huggingface.co/spaces/onnx/export" class="btn btn-primary"
>Export PyTorch models to ONNX →</a
Expand Down Expand Up @@ -120,7 +120,7 @@
</p>
</div>
<div class="hidden md:grid mx-auto">
<ImageHf2 widthscale={2} heightscale={2}/>
<ImageHf2 widthscale={2} heightscale={2} />
</div>
</div>
</div>
Expand All @@ -135,14 +135,37 @@
Learning, which improves time to value, streamlines MLOps, and provides built-in security.
</p>
<p>
<a href="https://ml.azure.com/" class="text-blue-500">Azure Machine Learning</a> also publishes a
curated model list that is updated regularly and includes some of the most popular models at the
moment. Of the models on this list that are available on Hugging Face, there is currently Optimum
ONNX support for over 85%.
<a href="https://ml.azure.com/" class="text-blue-500">Azure Machine Learning</a> also publishes
a curated model list that is updated regularly and includes some of the most popular models at
the moment. Of the models on this list that are available on Hugging Face, there is currently
Optimum ONNX support for over 85%.
Comment on lines +138 to +141
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<a href="https://ml.azure.com/" class="text-blue-500">Azure Machine Learning</a> also publishes
a curated model list that is updated regularly and includes some of the most popular models at
the moment. Of the models on this list that are available on Hugging Face, there is currently
Optimum ONNX support for over 85%.
<a href="https://ml.azure.com/" class="text-blue-500">Azure Machine Learning</a> publishes
a curated model list that is updated regularly and includes the most popular models. You can run
the vast majority of the models on the curated list with ONNX Runtime, using HuggingFace
Optimum.

</p>
</div>
<div class="hidden md:grid mx-auto">
<ImageHf3 widthscale={2} heightscale={2}/>
<ImageHf3 widthscale={2} heightscale={2} />
</div>
</div>
</div>
</div>

<div class="container mx-auto px-10 my-10">
<div class="divider" />
<div>
<div>
<h1 class="text-3xl pb-4">Transformers.js + ONNX Runtime Web</h1>
<p class="pb-4">
<a href="https://huggingface.co/docs/transformers.js/index" class="text-blue-500"
>Transformers.js</a
>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

an amazing tool

is amazing tool to run transformers on the web, designed to be functionally equivalent to Hugging
Face’s
<a href="https://github.com/huggingface/transformers" class="text-blue-500">transformers</a>
python library.
</p>
<p class="pb-4">
Powered by ONNX Runtime Web, it enables you to execute cutting-edge Machine Learning tasks
in areas such as Natural Language Processing, Computer Vision, Audio, and Multimodal
directly within your web browser, eliminating the need for a server.
</p>
</div>
</div>
</div>
Loading