From 977ce58a78fc46f89151944da745188d2f21332e Mon Sep 17 00:00:00 2001 From: Jacky Lee <39754370+jla524@users.noreply.github.com> Date: Fri, 17 May 2024 05:57:47 -0700 Subject: [PATCH] Fix dependencies for image classification example (#30842) * fix: missing dependencies * fix: image classification dependencies --- docs/source/en/tasks/zero_shot_image_classification.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/en/tasks/zero_shot_image_classification.md b/docs/source/en/tasks/zero_shot_image_classification.md index 45775d40ca..9f6e49a4bb 100644 --- a/docs/source/en/tasks/zero_shot_image_classification.md +++ b/docs/source/en/tasks/zero_shot_image_classification.md @@ -39,7 +39,7 @@ In this guide you'll learn how to: Before you begin, make sure you have all the necessary libraries installed: ```bash -pip install -q transformers +pip install -q "transformers[torch]" pillow ``` ## Zero-shot image classification pipeline