blog icon indicating copy to clipboard operation
blog copied to clipboard

Public repo for HF blog posts

Results 236 blog issues
Sort by recently updated
recently updated
newest added

This PR fixes the link to the widget image. xref: https://github.com/huggingface/blog/pull/441#issuecomment-1215687183 cc @merveenoyan I'm not sure who merges these PRs.

@stevhliu, this is the final post in the series on deploying vision models. Here are the previous two posts: * [Deploying TensorFlow Vision Models in Hugging Face with TF Serving](https://huggingface.co/blog/tf-serving-vision)...

A blog post explaining the method `8-bit Matrix Multiplication for transformers at scale` and how this is used under the hood in `transformers` ! - Still a WIP PR #...

Without `ignore_mismatched_sizes=True`, the code will raise the following exception: ```python RuntimeError Traceback (most recent call last) in () 4 num_labels=len(labels), 5 id2label={str(i): c for i, c in enumerate(labels)}, ----> 6...

I wrote a short post on how to visualize proteins using gradio as discussed with @osanseviero Let me know what you think :)

this sentence 'Li continues to be curious, is always learning and enjoys hands-on programming.' appears two times

This PR adds a blog post/tutorial about how to do mechanical turk data collection with a hugging face space. Definitely give feedback on how I can edit the post to...

WIP: Efficient BLOOM Inference on PyTorch Covers Accelerate, DS-ZeRO, DS-Inference and hopefully a whole new implementation Nicolas created in Rust for servers. Preview: https://github.com/stas00/blog/blob/bloom-inference-pytorch/bloom-inference-pytorch.md cc: @sgugger, @Narsil

Hi, i saved my model in these 3 followings ways: ``` from transformers import ViTFeatureExtractor, ViTForImageClassification from transformers import AutoModelForImageClassification from transformers import TFAutoModelForImageClassification model_directory = "drive/MyDrive/Tirocinio/1ris_vit-stanford-dog-dataset" tokenizer = ViTFeatureExtractor.from_pretrained(model_directory)...