LongCat
Collection
Collection of LongCat Models β’ 6 items β’ Updated
How to use vantagewithai/LongCat-Image-Edit-GGUF with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-to-image", model="vantagewithai/LongCat-Image-Edit-GGUF") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("vantagewithai/LongCat-Image-Edit-GGUF", dtype="auto")# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("vantagewithai/LongCat-Image-Edit-GGUF", dtype="auto")Quantized GGUF Version for ComfyUI
Original model Link: https://huggingface.co/meituan-longcat/LongCat-Image-Edit
Watch us at Youtube: @VantageWithAI
We introduce LongCat-Image-Edit, the image editing version of Longcat-Image. LongCat-Image-Edit supports bilingual (Chinese-English) editing, achieves state-of-the-art performance among open-source image editing models, delivering leading instruction-following and image quality with superior visual consistency.
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-to-image", model="vantagewithai/LongCat-Image-Edit-GGUF")