Category: huggingface
Introducing Pull Requests and Discussions 🥳
We are thrilled to announce the release of our latest collaborative features: pull requests and discussions on the Hugging Face Hub! Pull requests and discussions are available today under the community tab for all repository types: models, datasets, and Spaces. Any member of the community can create and participate in
Read moreThe Annotated Diffusion Model
In this blog post, we’ll take a deeper look into Denoising Diffusion Probabilistic Models (also known as DDPMs, diffusion models, score-based generative models or simply autoencoders) as researchers have
Read moreConvert Transformers to ONNX with Hugging Face Optimum
There are currently three ways to convert your Hugging Face Transformers models to ONNX. In this section, you will learn how to export distilbert-base-uncased-finetuned-sst-2-english for text-classification using all three methods going from the low-level torch API to the most user-friendly high-level API of optimum. Each method will do exactly the same Export with torch.onnx (low-level) torch.onnx enables you to convert model checkpoints to an ONNX graph by the export method. But you have to provide
Read moreGetting Started With Embeddings
Check out this tutorial with the Notebook Companion: Understanding embeddings An embedding is a numerical representation of a piece of information, for example, text, documents, images, audio, etc. The representation captures the semantic
Read more