NativeRes-ViT
Collection
2 items • Updated
How to use Niujunbo2002/qwen2_5_vit-668m-patch14-native with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-feature-extraction", model="Niujunbo2002/qwen2_5_vit-668m-patch14-native") # Load model directly
from transformers import AutoProcessor, AutoModel
processor = AutoProcessor.from_pretrained("Niujunbo2002/qwen2_5_vit-668m-patch14-native")
model = AutoModel.from_pretrained("Niujunbo2002/qwen2_5_vit-668m-patch14-native")This repository contains the NativeRes-LLaVA model from Native Visual Understanding: Resolving Resolution Dilemmas in Vision-Language Models.
Project page: https://niujunbo2002.github.io/NativeRes-LLaVA/
For code, see https://github.com/Niujunbo2002/NativeRes-LLaVA.