From 95418a927de06e03009c57e759ce82d146a97d3d Mon Sep 17 00:00:00 2001 From: Pasan Fernando <152805932+dev-pa5an@users.noreply.github.com> Date: Tue, 25 Jun 2024 10:56:01 +0000 Subject: [PATCH] Solve the dependancy conflict error when installing the transformers library from the source for the sagemaker-disttribution kernal --- examples/zeroshot_object_detection_with_owlvit.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/zeroshot_object_detection_with_owlvit.ipynb b/examples/zeroshot_object_detection_with_owlvit.ipynb index a2917c41..8d319468 100644 --- a/examples/zeroshot_object_detection_with_owlvit.ipynb +++ b/examples/zeroshot_object_detection_with_owlvit.ipynb @@ -26,7 +26,7 @@ "source": [ "## Set-up environment\n", "\n", - "First, we install the HuggingFace Transformers library (from source for now, as the model was recently added to the library and is under active development). This might take a few minutes." + "First, we install the HuggingFace Transformers library. This might take a few minutes." ] }, { @@ -41,7 +41,7 @@ }, "outputs": [], "source": [ - "!pip install -q git+https://github.com/huggingface/transformers.git" + "!pip install -q transformers" ] }, {