From 9c1d59882b36dfb3840e0e79a25096d290e3e25d Mon Sep 17 00:00:00 2001 From: Maria Khalusova Date: Wed, 1 Mar 2023 08:26:25 -0500 Subject: [PATCH] Removed BLIP mention from the troubleshooting guide (#21872) removed BLIP mention from the troubleshooting guide --- docs/source/en/troubleshooting.mdx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/source/en/troubleshooting.mdx b/docs/source/en/troubleshooting.mdx index 068e382eec..bc3135be8f 100644 --- a/docs/source/en/troubleshooting.mdx +++ b/docs/source/en/troubleshooting.mdx @@ -192,7 +192,3 @@ For instance, you'll see this error in the following example because there is no ValueError: Unrecognized configuration class for this kind of AutoModel: AutoModelForQuestionAnswering. Model type should be one of AlbertConfig, BartConfig, BertConfig, BigBirdConfig, BigBirdPegasusConfig, BloomConfig, ... ``` - -In rare cases, this can also happen when using some exotic models with architectures that don't map to any of the -AutoModelForXXX classes due to the specifics of their API. For example, you can use [`AutoProcessor`] to load BLIP-2's processor, -but to load a pretrained BLIP-2 model itself, you must explicitly use [`Blip2ForConditionalGeneration`] as even [`AutoModel`] won't work.