Instructions to use thwri/CogFlorence-2-Large-Freeze with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use thwri/CogFlorence-2-Large-Freeze with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "image-to-text" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("image-to-text", model="thwri/CogFlorence-2-Large-Freeze", trust_remote_code=True)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("thwri/CogFlorence-2-Large-Freeze", trust_remote_code=True) model = AutoModelForMultimodalLM.from_pretrained("thwri/CogFlorence-2-Large-Freeze", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
CogFlorence-2.2-Large Error
#2
by Hansiburli69 - opened
When I try to load thwri/CogFlorence-2.2-Large in ComfyUI, I get the following error message when running the workflow:
"microsoft/Florence-2-large is not a local folder and is not a valid model identifier listed on 'https://huggingface.co/models'
If this is a private repository, make sure to pass a token having permission to this repo either by logging in with huggingface-cli login or by passing token=<your_token>"
What is to do?