Views
No views yet
datalab-to/lift (which is built on the Qwen2VL architecture). This model was created using the Heretic framework, employing advanced orthogonal weight ablation to remove refusal vectors while completely preserving the model's underlying reasoning, intelligence, and multimodal capabilities.0.0275, the structural integrity and logic capabilities of the base model are perfectly intact. It simply no longer refuses instructions.transformers or vLLM pipeline that supports Qwen2VL.pillow and torchvision installed:1from transformers import AutoProcessor, Qwen2VLForConditionalGeneration
2
3model_id = "Umranz/Hydra-Turbo"
4processor = AutoProcessor.from_pretrained(model_id)
5model = Qwen2VLForConditionalGeneration.from_pretrained(
6 model_id,
7 torch_dtype="auto",
8 device_map="auto"
9)datalab-to/lift