mirror of
https://github.com/nod-ai/SHARK-Studio.git
synced 2026-01-09 22:07:55 -05:00
[MiniGPT4] Add MiniGPT4 to SHARK (#1554)
* [MiniGPT4] Add MiniGPT4 to SHARK -- This is the first installment of MiniGPT4 in SHARK. Signed-off-by: Abhishek Varma <abhishek@nod-labs.com> * Add int8 support for MiniGPT4 -- This commit adds int8 support for MiniGPT4. Signed-off-by: Abhishek Varma <abhishek@nod-lab.com> * Update .spec for MiniGPT4's config files * black format MiniGPT4 --------- Signed-off-by: Abhishek Varma <abhishek@nod-labs.com> Signed-off-by: Abhishek Varma <abhishek@nod-lab.com>
This commit is contained in:
2
.flake8
2
.flake8
@@ -2,4 +2,4 @@
|
|||||||
count = 1
|
count = 1
|
||||||
show-source = 1
|
show-source = 1
|
||||||
select = E9,F63,F7,F82
|
select = E9,F63,F7,F82
|
||||||
exclude = lit.cfg.py, apps/language_models/scripts/vicuna.py
|
exclude = lit.cfg.py, apps/language_models/scripts/vicuna.py, apps/language_models/src/pipelines/minigpt4_pipeline.py
|
||||||
|
|||||||
503
apps/language_models/src/model_wrappers/minigpt4.py
Normal file
503
apps/language_models/src/model_wrappers/minigpt4.py
Normal file
@@ -0,0 +1,503 @@
|
|||||||
|
import torch
|
||||||
|
import dataclasses
|
||||||
|
from enum import auto, Enum
|
||||||
|
from typing import List, Any
|
||||||
|
from transformers import StoppingCriteria
|
||||||
|
|
||||||
|
|
||||||
|
from brevitas_examples.llm.llm_quant.quantize import quantize_model
|
||||||
|
from brevitas_examples.llm.llm_quant.run_utils import get_model_impl
|
||||||
|
|
||||||
|
|
||||||
|
class LayerNorm(torch.nn.LayerNorm):
|
||||||
|
"""Subclass torch's LayerNorm to handle fp16."""
|
||||||
|
|
||||||
|
def forward(self, x: torch.Tensor):
|
||||||
|
orig_type = x.dtype
|
||||||
|
ret = super().forward(x.type(torch.float32))
|
||||||
|
return ret.type(orig_type)
|
||||||
|
|
||||||
|
|
||||||
|
class VisionModel(torch.nn.Module):
|
||||||
|
def __init__(
|
||||||
|
self,
|
||||||
|
ln_vision,
|
||||||
|
visual_encoder,
|
||||||
|
precision="fp32",
|
||||||
|
weight_group_size=128,
|
||||||
|
):
|
||||||
|
super().__init__()
|
||||||
|
self.ln_vision = ln_vision
|
||||||
|
self.visual_encoder = visual_encoder
|
||||||
|
if precision in ["int4", "int8"]:
|
||||||
|
print("Vision Model applying weight quantization to ln_vision")
|
||||||
|
weight_bit_width = 4 if precision == "int4" else 8
|
||||||
|
quantize_model(
|
||||||
|
self.ln_vision,
|
||||||
|
dtype=torch.float32,
|
||||||
|
weight_bit_width=weight_bit_width,
|
||||||
|
weight_param_method="stats",
|
||||||
|
weight_scale_precision="float",
|
||||||
|
weight_quant_type="asym",
|
||||||
|
weight_quant_granularity="per_group",
|
||||||
|
weight_group_size=weight_group_size,
|
||||||
|
quantize_weight_zero_point=False,
|
||||||
|
)
|
||||||
|
print("Weight quantization applied.")
|
||||||
|
print(
|
||||||
|
"Vision Model applying weight quantization to visual_encoder"
|
||||||
|
)
|
||||||
|
quantize_model(
|
||||||
|
self.visual_encoder,
|
||||||
|
dtype=torch.float32,
|
||||||
|
weight_bit_width=weight_bit_width,
|
||||||
|
weight_param_method="stats",
|
||||||
|
weight_scale_precision="float",
|
||||||
|
weight_quant_type="asym",
|
||||||
|
weight_quant_granularity="per_group",
|
||||||
|
weight_group_size=weight_group_size,
|
||||||
|
quantize_weight_zero_point=False,
|
||||||
|
)
|
||||||
|
print("Weight quantization applied.")
|
||||||
|
|
||||||
|
def forward(self, image):
|
||||||
|
image_embeds = self.ln_vision(self.visual_encoder(image))
|
||||||
|
return image_embeds
|
||||||
|
|
||||||
|
|
||||||
|
class QformerBertModel(torch.nn.Module):
|
||||||
|
def __init__(self, qformer_bert):
|
||||||
|
super().__init__()
|
||||||
|
self.qformer_bert = qformer_bert
|
||||||
|
|
||||||
|
def forward(self, query_tokens, image_embeds, image_atts):
|
||||||
|
query_output = self.qformer_bert(
|
||||||
|
query_embeds=query_tokens,
|
||||||
|
encoder_hidden_states=image_embeds,
|
||||||
|
encoder_attention_mask=image_atts,
|
||||||
|
return_dict=True,
|
||||||
|
)
|
||||||
|
return query_output.last_hidden_state
|
||||||
|
|
||||||
|
|
||||||
|
class FirstLlamaModel(torch.nn.Module):
|
||||||
|
def __init__(self, model, precision="fp32", weight_group_size=128):
|
||||||
|
super().__init__()
|
||||||
|
self.model = model
|
||||||
|
print("SHARK: Loading LLAMA Done")
|
||||||
|
if precision in ["int4", "int8"]:
|
||||||
|
print("First Llama applying weight quantization")
|
||||||
|
weight_bit_width = 4 if precision == "int4" else 8
|
||||||
|
quantize_model(
|
||||||
|
self.model,
|
||||||
|
dtype=torch.float32,
|
||||||
|
weight_bit_width=weight_bit_width,
|
||||||
|
weight_param_method="stats",
|
||||||
|
weight_scale_precision="float",
|
||||||
|
weight_quant_type="asym",
|
||||||
|
weight_quant_granularity="per_group",
|
||||||
|
weight_group_size=weight_group_size,
|
||||||
|
quantize_weight_zero_point=False,
|
||||||
|
)
|
||||||
|
print("Weight quantization applied.")
|
||||||
|
|
||||||
|
def forward(self, inputs_embeds, position_ids, attention_mask):
|
||||||
|
print("************************************")
|
||||||
|
print(
|
||||||
|
"inputs_embeds: ",
|
||||||
|
inputs_embeds.shape,
|
||||||
|
" dtype: ",
|
||||||
|
inputs_embeds.dtype,
|
||||||
|
)
|
||||||
|
print(
|
||||||
|
"position_ids: ",
|
||||||
|
position_ids.shape,
|
||||||
|
" dtype: ",
|
||||||
|
position_ids.dtype,
|
||||||
|
)
|
||||||
|
print(
|
||||||
|
"attention_mask: ",
|
||||||
|
attention_mask.shape,
|
||||||
|
" dtype: ",
|
||||||
|
attention_mask.dtype,
|
||||||
|
)
|
||||||
|
print("************************************")
|
||||||
|
config = {
|
||||||
|
"inputs_embeds": inputs_embeds,
|
||||||
|
"position_ids": position_ids,
|
||||||
|
"past_key_values": None,
|
||||||
|
"use_cache": True,
|
||||||
|
"attention_mask": attention_mask,
|
||||||
|
}
|
||||||
|
output = self.model(
|
||||||
|
**config,
|
||||||
|
return_dict=True,
|
||||||
|
output_attentions=False,
|
||||||
|
output_hidden_states=False,
|
||||||
|
)
|
||||||
|
return_vals = []
|
||||||
|
return_vals.append(output.logits)
|
||||||
|
temp_past_key_values = output.past_key_values
|
||||||
|
for item in temp_past_key_values:
|
||||||
|
return_vals.append(item[0])
|
||||||
|
return_vals.append(item[1])
|
||||||
|
return tuple(return_vals)
|
||||||
|
|
||||||
|
|
||||||
|
class SecondLlamaModel(torch.nn.Module):
|
||||||
|
def __init__(self, model, precision="fp32", weight_group_size=128):
|
||||||
|
super().__init__()
|
||||||
|
self.model = model
|
||||||
|
print("SHARK: Loading LLAMA Done")
|
||||||
|
if precision in ["int4", "int8"]:
|
||||||
|
print("Second Llama applying weight quantization")
|
||||||
|
weight_bit_width = 4 if precision == "int4" else 8
|
||||||
|
quantize_model(
|
||||||
|
self.model,
|
||||||
|
dtype=torch.float32,
|
||||||
|
weight_bit_width=weight_bit_width,
|
||||||
|
weight_param_method="stats",
|
||||||
|
weight_scale_precision="float",
|
||||||
|
weight_quant_type="asym",
|
||||||
|
weight_quant_granularity="per_group",
|
||||||
|
weight_group_size=weight_group_size,
|
||||||
|
quantize_weight_zero_point=False,
|
||||||
|
)
|
||||||
|
print("Weight quantization applied.")
|
||||||
|
|
||||||
|
def forward(
|
||||||
|
self,
|
||||||
|
input_ids,
|
||||||
|
position_ids,
|
||||||
|
attention_mask,
|
||||||
|
i1,
|
||||||
|
i2,
|
||||||
|
i3,
|
||||||
|
i4,
|
||||||
|
i5,
|
||||||
|
i6,
|
||||||
|
i7,
|
||||||
|
i8,
|
||||||
|
i9,
|
||||||
|
i10,
|
||||||
|
i11,
|
||||||
|
i12,
|
||||||
|
i13,
|
||||||
|
i14,
|
||||||
|
i15,
|
||||||
|
i16,
|
||||||
|
i17,
|
||||||
|
i18,
|
||||||
|
i19,
|
||||||
|
i20,
|
||||||
|
i21,
|
||||||
|
i22,
|
||||||
|
i23,
|
||||||
|
i24,
|
||||||
|
i25,
|
||||||
|
i26,
|
||||||
|
i27,
|
||||||
|
i28,
|
||||||
|
i29,
|
||||||
|
i30,
|
||||||
|
i31,
|
||||||
|
i32,
|
||||||
|
i33,
|
||||||
|
i34,
|
||||||
|
i35,
|
||||||
|
i36,
|
||||||
|
i37,
|
||||||
|
i38,
|
||||||
|
i39,
|
||||||
|
i40,
|
||||||
|
i41,
|
||||||
|
i42,
|
||||||
|
i43,
|
||||||
|
i44,
|
||||||
|
i45,
|
||||||
|
i46,
|
||||||
|
i47,
|
||||||
|
i48,
|
||||||
|
i49,
|
||||||
|
i50,
|
||||||
|
i51,
|
||||||
|
i52,
|
||||||
|
i53,
|
||||||
|
i54,
|
||||||
|
i55,
|
||||||
|
i56,
|
||||||
|
i57,
|
||||||
|
i58,
|
||||||
|
i59,
|
||||||
|
i60,
|
||||||
|
i61,
|
||||||
|
i62,
|
||||||
|
i63,
|
||||||
|
i64,
|
||||||
|
):
|
||||||
|
print("************************************")
|
||||||
|
print("input_ids: ", input_ids.shape, " dtype: ", input_ids.dtype)
|
||||||
|
print(
|
||||||
|
"position_ids: ",
|
||||||
|
position_ids.shape,
|
||||||
|
" dtype: ",
|
||||||
|
position_ids.dtype,
|
||||||
|
)
|
||||||
|
print(
|
||||||
|
"attention_mask: ",
|
||||||
|
attention_mask.shape,
|
||||||
|
" dtype: ",
|
||||||
|
attention_mask.dtype,
|
||||||
|
)
|
||||||
|
print("past_key_values: ", i1.shape, i2.shape, i63.shape, i64.shape)
|
||||||
|
print("past_key_values dtype: ", i1.dtype)
|
||||||
|
print("************************************")
|
||||||
|
config = {
|
||||||
|
"input_ids": input_ids,
|
||||||
|
"position_ids": position_ids,
|
||||||
|
"past_key_values": (
|
||||||
|
(i1, i2),
|
||||||
|
(
|
||||||
|
i3,
|
||||||
|
i4,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i5,
|
||||||
|
i6,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i7,
|
||||||
|
i8,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i9,
|
||||||
|
i10,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i11,
|
||||||
|
i12,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i13,
|
||||||
|
i14,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i15,
|
||||||
|
i16,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i17,
|
||||||
|
i18,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i19,
|
||||||
|
i20,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i21,
|
||||||
|
i22,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i23,
|
||||||
|
i24,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i25,
|
||||||
|
i26,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i27,
|
||||||
|
i28,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i29,
|
||||||
|
i30,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i31,
|
||||||
|
i32,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i33,
|
||||||
|
i34,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i35,
|
||||||
|
i36,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i37,
|
||||||
|
i38,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i39,
|
||||||
|
i40,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i41,
|
||||||
|
i42,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i43,
|
||||||
|
i44,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i45,
|
||||||
|
i46,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i47,
|
||||||
|
i48,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i49,
|
||||||
|
i50,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i51,
|
||||||
|
i52,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i53,
|
||||||
|
i54,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i55,
|
||||||
|
i56,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i57,
|
||||||
|
i58,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i59,
|
||||||
|
i60,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i61,
|
||||||
|
i62,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
i63,
|
||||||
|
i64,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
"use_cache": True,
|
||||||
|
"attention_mask": attention_mask,
|
||||||
|
}
|
||||||
|
output = self.model(
|
||||||
|
**config,
|
||||||
|
return_dict=True,
|
||||||
|
output_attentions=False,
|
||||||
|
output_hidden_states=False,
|
||||||
|
)
|
||||||
|
return_vals = []
|
||||||
|
return_vals.append(output.logits)
|
||||||
|
temp_past_key_values = output.past_key_values
|
||||||
|
for item in temp_past_key_values:
|
||||||
|
return_vals.append(item[0])
|
||||||
|
return_vals.append(item[1])
|
||||||
|
return tuple(return_vals)
|
||||||
|
|
||||||
|
|
||||||
|
class SeparatorStyle(Enum):
|
||||||
|
"""Different separator style."""
|
||||||
|
|
||||||
|
SINGLE = auto()
|
||||||
|
TWO = auto()
|
||||||
|
|
||||||
|
|
||||||
|
@dataclasses.dataclass
|
||||||
|
class Conversation:
|
||||||
|
"""A class that keeps all conversation history."""
|
||||||
|
|
||||||
|
system: str
|
||||||
|
roles: List[str]
|
||||||
|
messages: List[List[str]]
|
||||||
|
offset: int
|
||||||
|
sep_style: SeparatorStyle = SeparatorStyle.SINGLE
|
||||||
|
sep: str = "###"
|
||||||
|
sep2: str = None
|
||||||
|
|
||||||
|
skip_next: bool = False
|
||||||
|
conv_id: Any = None
|
||||||
|
|
||||||
|
def get_prompt(self):
|
||||||
|
if self.sep_style == SeparatorStyle.SINGLE:
|
||||||
|
ret = self.system + self.sep
|
||||||
|
for role, message in self.messages:
|
||||||
|
if message:
|
||||||
|
ret += role + ": " + message + self.sep
|
||||||
|
else:
|
||||||
|
ret += role + ":"
|
||||||
|
return ret
|
||||||
|
elif self.sep_style == SeparatorStyle.TWO:
|
||||||
|
seps = [self.sep, self.sep2]
|
||||||
|
ret = self.system + seps[0]
|
||||||
|
for i, (role, message) in enumerate(self.messages):
|
||||||
|
if message:
|
||||||
|
ret += role + ": " + message + seps[i % 2]
|
||||||
|
else:
|
||||||
|
ret += role + ":"
|
||||||
|
return ret
|
||||||
|
else:
|
||||||
|
raise ValueError(f"Invalid style: {self.sep_style}")
|
||||||
|
|
||||||
|
def append_message(self, role, message):
|
||||||
|
self.messages.append([role, message])
|
||||||
|
|
||||||
|
def to_gradio_chatbot(self):
|
||||||
|
ret = []
|
||||||
|
for i, (role, msg) in enumerate(self.messages[self.offset :]):
|
||||||
|
if i % 2 == 0:
|
||||||
|
ret.append([msg, None])
|
||||||
|
else:
|
||||||
|
ret[-1][-1] = msg
|
||||||
|
return ret
|
||||||
|
|
||||||
|
def copy(self):
|
||||||
|
return Conversation(
|
||||||
|
system=self.system,
|
||||||
|
roles=self.roles,
|
||||||
|
messages=[[x, y] for x, y in self.messages],
|
||||||
|
offset=self.offset,
|
||||||
|
sep_style=self.sep_style,
|
||||||
|
sep=self.sep,
|
||||||
|
sep2=self.sep2,
|
||||||
|
conv_id=self.conv_id,
|
||||||
|
)
|
||||||
|
|
||||||
|
def dict(self):
|
||||||
|
return {
|
||||||
|
"system": self.system,
|
||||||
|
"roles": self.roles,
|
||||||
|
"messages": self.messages,
|
||||||
|
"offset": self.offset,
|
||||||
|
"sep": self.sep,
|
||||||
|
"sep2": self.sep2,
|
||||||
|
"conv_id": self.conv_id,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class StoppingCriteriaSub(StoppingCriteria):
|
||||||
|
def __init__(self, stops=[], encounters=1):
|
||||||
|
super().__init__()
|
||||||
|
self.stops = stops
|
||||||
|
|
||||||
|
def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTensor):
|
||||||
|
for stop in self.stops:
|
||||||
|
if torch.all((stop == input_ids[0][-len(stop) :])).item():
|
||||||
|
return True
|
||||||
|
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
CONV_VISION = Conversation(
|
||||||
|
system="Give the following image: <Img>ImageContent</Img>. "
|
||||||
|
"You will be able to see the image once I provide it to you. Please answer my questions.",
|
||||||
|
roles=("Human", "Assistant"),
|
||||||
|
messages=[],
|
||||||
|
offset=2,
|
||||||
|
sep_style=SeparatorStyle.SINGLE,
|
||||||
|
sep="###",
|
||||||
|
)
|
||||||
1439
apps/language_models/src/pipelines/minigpt4_pipeline.py
Normal file
1439
apps/language_models/src/pipelines/minigpt4_pipeline.py
Normal file
File diff suppressed because it is too large
Load Diff
1297
apps/language_models/src/pipelines/minigpt4_utils/Qformer.py
Normal file
1297
apps/language_models/src/pipelines/minigpt4_utils/Qformer.py
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,68 @@
|
|||||||
|
"""
|
||||||
|
Copyright (c) 2022, salesforce.com, inc.
|
||||||
|
All rights reserved.
|
||||||
|
SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
For full license text, see the LICENSE_Lavis file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
||||||
|
"""
|
||||||
|
from omegaconf import OmegaConf
|
||||||
|
from torchvision import transforms
|
||||||
|
from torchvision.transforms.functional import InterpolationMode
|
||||||
|
|
||||||
|
|
||||||
|
class BaseProcessor:
|
||||||
|
def __init__(self):
|
||||||
|
self.transform = lambda x: x
|
||||||
|
return
|
||||||
|
|
||||||
|
def __call__(self, item):
|
||||||
|
return self.transform(item)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def from_config(cls, cfg=None):
|
||||||
|
return cls()
|
||||||
|
|
||||||
|
def build(self, **kwargs):
|
||||||
|
cfg = OmegaConf.create(kwargs)
|
||||||
|
|
||||||
|
return self.from_config(cfg)
|
||||||
|
|
||||||
|
|
||||||
|
class BlipImageBaseProcessor(BaseProcessor):
|
||||||
|
def __init__(self, mean=None, std=None):
|
||||||
|
if mean is None:
|
||||||
|
mean = (0.48145466, 0.4578275, 0.40821073)
|
||||||
|
if std is None:
|
||||||
|
std = (0.26862954, 0.26130258, 0.27577711)
|
||||||
|
|
||||||
|
self.normalize = transforms.Normalize(mean, std)
|
||||||
|
|
||||||
|
|
||||||
|
class Blip2ImageEvalProcessor(BlipImageBaseProcessor):
|
||||||
|
def __init__(self, image_size=224, mean=None, std=None):
|
||||||
|
super().__init__(mean=mean, std=std)
|
||||||
|
|
||||||
|
self.transform = transforms.Compose(
|
||||||
|
[
|
||||||
|
transforms.Resize(
|
||||||
|
(image_size, image_size),
|
||||||
|
interpolation=InterpolationMode.BICUBIC,
|
||||||
|
),
|
||||||
|
transforms.ToTensor(),
|
||||||
|
self.normalize,
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
def __call__(self, item):
|
||||||
|
return self.transform(item)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def from_config(cls, cfg=None):
|
||||||
|
if cfg is None:
|
||||||
|
cfg = OmegaConf.create()
|
||||||
|
|
||||||
|
image_size = cfg.get("image_size", 224)
|
||||||
|
|
||||||
|
mean = cfg.get("mean", None)
|
||||||
|
std = cfg.get("std", None)
|
||||||
|
|
||||||
|
return cls(image_size=image_size, mean=mean, std=std)
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
datasets:
|
||||||
|
cc_sbu_align:
|
||||||
|
data_type: images
|
||||||
|
build_info:
|
||||||
|
storage: /path/to/cc_sbu_align/
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
model:
|
||||||
|
arch: mini_gpt4
|
||||||
|
|
||||||
|
# vit encoder
|
||||||
|
image_size: 224
|
||||||
|
drop_path_rate: 0
|
||||||
|
use_grad_checkpoint: False
|
||||||
|
vit_precision: "fp16"
|
||||||
|
freeze_vit: True
|
||||||
|
freeze_qformer: True
|
||||||
|
|
||||||
|
# Q-Former
|
||||||
|
num_query_token: 32
|
||||||
|
|
||||||
|
# Vicuna
|
||||||
|
llama_model: "lmsys/vicuna-7b-v1.3"
|
||||||
|
|
||||||
|
# generation configs
|
||||||
|
prompt: ""
|
||||||
|
|
||||||
|
preprocess:
|
||||||
|
vis_processor:
|
||||||
|
train:
|
||||||
|
name: "blip2_image_train"
|
||||||
|
image_size: 224
|
||||||
|
eval:
|
||||||
|
name: "blip2_image_eval"
|
||||||
|
image_size: 224
|
||||||
|
text_processor:
|
||||||
|
train:
|
||||||
|
name: "blip_caption"
|
||||||
|
eval:
|
||||||
|
name: "blip_caption"
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
model:
|
||||||
|
arch: mini_gpt4
|
||||||
|
model_type: pretrain_vicuna
|
||||||
|
freeze_vit: True
|
||||||
|
freeze_qformer: True
|
||||||
|
max_txt_len: 160
|
||||||
|
end_sym: "###"
|
||||||
|
low_resource: False
|
||||||
|
prompt_path: "apps/language_models/src/pipelines/minigpt4_utils/prompts/alignment.txt"
|
||||||
|
prompt_template: '###Human: {} ###Assistant: '
|
||||||
|
ckpt: 'prerained_minigpt4_7b.pth'
|
||||||
|
|
||||||
|
|
||||||
|
datasets:
|
||||||
|
cc_sbu_align:
|
||||||
|
vis_processor:
|
||||||
|
train:
|
||||||
|
name: "blip2_image_eval"
|
||||||
|
image_size: 224
|
||||||
|
text_processor:
|
||||||
|
train:
|
||||||
|
name: "blip_caption"
|
||||||
|
|
||||||
|
run:
|
||||||
|
task: image_text_pretrain
|
||||||
629
apps/language_models/src/pipelines/minigpt4_utils/eva_vit.py
Normal file
629
apps/language_models/src/pipelines/minigpt4_utils/eva_vit.py
Normal file
@@ -0,0 +1,629 @@
|
|||||||
|
# Based on EVA, BEIT, timm and DeiT code bases
|
||||||
|
# https://github.com/baaivision/EVA
|
||||||
|
# https://github.com/rwightman/pytorch-image-models/tree/master/timm
|
||||||
|
# https://github.com/microsoft/unilm/tree/master/beit
|
||||||
|
# https://github.com/facebookresearch/deit/
|
||||||
|
# https://github.com/facebookresearch/dino
|
||||||
|
# --------------------------------------------------------'
|
||||||
|
import math
|
||||||
|
import requests
|
||||||
|
from functools import partial
|
||||||
|
|
||||||
|
import torch
|
||||||
|
import torch.nn as nn
|
||||||
|
import torch.nn.functional as F
|
||||||
|
import torch.utils.checkpoint as checkpoint
|
||||||
|
from timm.models.layers import drop_path, to_2tuple, trunc_normal_
|
||||||
|
|
||||||
|
|
||||||
|
def _cfg(url="", **kwargs):
|
||||||
|
return {
|
||||||
|
"url": url,
|
||||||
|
"num_classes": 1000,
|
||||||
|
"input_size": (3, 224, 224),
|
||||||
|
"pool_size": None,
|
||||||
|
"crop_pct": 0.9,
|
||||||
|
"interpolation": "bicubic",
|
||||||
|
"mean": (0.5, 0.5, 0.5),
|
||||||
|
"std": (0.5, 0.5, 0.5),
|
||||||
|
**kwargs,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class DropPath(nn.Module):
|
||||||
|
"""Drop paths (Stochastic Depth) per sample (when applied in main path of residual blocks)."""
|
||||||
|
|
||||||
|
def __init__(self, drop_prob=None):
|
||||||
|
super(DropPath, self).__init__()
|
||||||
|
self.drop_prob = drop_prob
|
||||||
|
|
||||||
|
def forward(self, x):
|
||||||
|
return drop_path(x, self.drop_prob, self.training)
|
||||||
|
|
||||||
|
def extra_repr(self) -> str:
|
||||||
|
return "p={}".format(self.drop_prob)
|
||||||
|
|
||||||
|
|
||||||
|
class Mlp(nn.Module):
|
||||||
|
def __init__(
|
||||||
|
self,
|
||||||
|
in_features,
|
||||||
|
hidden_features=None,
|
||||||
|
out_features=None,
|
||||||
|
act_layer=nn.GELU,
|
||||||
|
drop=0.0,
|
||||||
|
):
|
||||||
|
super().__init__()
|
||||||
|
out_features = out_features or in_features
|
||||||
|
hidden_features = hidden_features or in_features
|
||||||
|
self.fc1 = nn.Linear(in_features, hidden_features)
|
||||||
|
self.act = act_layer()
|
||||||
|
self.fc2 = nn.Linear(hidden_features, out_features)
|
||||||
|
self.drop = nn.Dropout(drop)
|
||||||
|
|
||||||
|
def forward(self, x):
|
||||||
|
x = self.fc1(x)
|
||||||
|
x = self.act(x)
|
||||||
|
# x = self.drop(x)
|
||||||
|
# commit this for the orignal BERT implement
|
||||||
|
x = self.fc2(x)
|
||||||
|
x = self.drop(x)
|
||||||
|
return x
|
||||||
|
|
||||||
|
|
||||||
|
class Attention(nn.Module):
|
||||||
|
def __init__(
|
||||||
|
self,
|
||||||
|
dim,
|
||||||
|
num_heads=8,
|
||||||
|
qkv_bias=False,
|
||||||
|
qk_scale=None,
|
||||||
|
attn_drop=0.0,
|
||||||
|
proj_drop=0.0,
|
||||||
|
window_size=None,
|
||||||
|
attn_head_dim=None,
|
||||||
|
):
|
||||||
|
super().__init__()
|
||||||
|
self.num_heads = num_heads
|
||||||
|
head_dim = dim // num_heads
|
||||||
|
if attn_head_dim is not None:
|
||||||
|
head_dim = attn_head_dim
|
||||||
|
all_head_dim = head_dim * self.num_heads
|
||||||
|
self.scale = qk_scale or head_dim**-0.5
|
||||||
|
|
||||||
|
self.qkv = nn.Linear(dim, all_head_dim * 3, bias=False)
|
||||||
|
if qkv_bias:
|
||||||
|
self.q_bias = nn.Parameter(torch.zeros(all_head_dim))
|
||||||
|
self.v_bias = nn.Parameter(torch.zeros(all_head_dim))
|
||||||
|
else:
|
||||||
|
self.q_bias = None
|
||||||
|
self.v_bias = None
|
||||||
|
|
||||||
|
if window_size:
|
||||||
|
self.window_size = window_size
|
||||||
|
self.num_relative_distance = (2 * window_size[0] - 1) * (
|
||||||
|
2 * window_size[1] - 1
|
||||||
|
) + 3
|
||||||
|
self.relative_position_bias_table = nn.Parameter(
|
||||||
|
torch.zeros(self.num_relative_distance, num_heads)
|
||||||
|
) # 2*Wh-1 * 2*Ww-1, nH
|
||||||
|
# cls to token & token 2 cls & cls to cls
|
||||||
|
|
||||||
|
# get pair-wise relative position index for each token inside the window
|
||||||
|
coords_h = torch.arange(window_size[0])
|
||||||
|
coords_w = torch.arange(window_size[1])
|
||||||
|
coords = torch.stack(
|
||||||
|
torch.meshgrid([coords_h, coords_w])
|
||||||
|
) # 2, Wh, Ww
|
||||||
|
coords_flatten = torch.flatten(coords, 1) # 2, Wh*Ww
|
||||||
|
relative_coords = (
|
||||||
|
coords_flatten[:, :, None] - coords_flatten[:, None, :]
|
||||||
|
) # 2, Wh*Ww, Wh*Ww
|
||||||
|
relative_coords = relative_coords.permute(
|
||||||
|
1, 2, 0
|
||||||
|
).contiguous() # Wh*Ww, Wh*Ww, 2
|
||||||
|
relative_coords[:, :, 0] += (
|
||||||
|
window_size[0] - 1
|
||||||
|
) # shift to start from 0
|
||||||
|
relative_coords[:, :, 1] += window_size[1] - 1
|
||||||
|
relative_coords[:, :, 0] *= 2 * window_size[1] - 1
|
||||||
|
relative_position_index = torch.zeros(
|
||||||
|
size=(window_size[0] * window_size[1] + 1,) * 2,
|
||||||
|
dtype=relative_coords.dtype,
|
||||||
|
)
|
||||||
|
relative_position_index[1:, 1:] = relative_coords.sum(
|
||||||
|
-1
|
||||||
|
) # Wh*Ww, Wh*Ww
|
||||||
|
relative_position_index[0, 0:] = self.num_relative_distance - 3
|
||||||
|
relative_position_index[0:, 0] = self.num_relative_distance - 2
|
||||||
|
relative_position_index[0, 0] = self.num_relative_distance - 1
|
||||||
|
|
||||||
|
self.register_buffer(
|
||||||
|
"relative_position_index", relative_position_index
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
self.window_size = None
|
||||||
|
self.relative_position_bias_table = None
|
||||||
|
self.relative_position_index = None
|
||||||
|
|
||||||
|
self.attn_drop = nn.Dropout(attn_drop)
|
||||||
|
self.proj = nn.Linear(all_head_dim, dim)
|
||||||
|
self.proj_drop = nn.Dropout(proj_drop)
|
||||||
|
|
||||||
|
def forward(self, x, rel_pos_bias=None):
|
||||||
|
B, N, C = x.shape
|
||||||
|
qkv_bias = None
|
||||||
|
if self.q_bias is not None:
|
||||||
|
qkv_bias = torch.cat(
|
||||||
|
(
|
||||||
|
self.q_bias,
|
||||||
|
torch.zeros_like(self.v_bias, requires_grad=False),
|
||||||
|
self.v_bias,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
# qkv = self.qkv(x).reshape(B, N, 3, self.num_heads, C // self.num_heads).permute(2, 0, 3, 1, 4)
|
||||||
|
qkv = F.linear(input=x, weight=self.qkv.weight, bias=qkv_bias)
|
||||||
|
qkv = qkv.reshape(B, N, 3, self.num_heads, -1).permute(2, 0, 3, 1, 4)
|
||||||
|
q, k, v = (
|
||||||
|
qkv[0],
|
||||||
|
qkv[1],
|
||||||
|
qkv[2],
|
||||||
|
) # make torchscript happy (cannot use tensor as tuple)
|
||||||
|
|
||||||
|
q = q * self.scale
|
||||||
|
attn = q @ k.transpose(-2, -1)
|
||||||
|
|
||||||
|
if self.relative_position_bias_table is not None:
|
||||||
|
relative_position_bias = self.relative_position_bias_table[
|
||||||
|
self.relative_position_index.view(-1)
|
||||||
|
].view(
|
||||||
|
self.window_size[0] * self.window_size[1] + 1,
|
||||||
|
self.window_size[0] * self.window_size[1] + 1,
|
||||||
|
-1,
|
||||||
|
) # Wh*Ww,Wh*Ww,nH
|
||||||
|
relative_position_bias = relative_position_bias.permute(
|
||||||
|
2, 0, 1
|
||||||
|
).contiguous() # nH, Wh*Ww, Wh*Ww
|
||||||
|
attn = attn + relative_position_bias.unsqueeze(0)
|
||||||
|
|
||||||
|
if rel_pos_bias is not None:
|
||||||
|
attn = attn + rel_pos_bias
|
||||||
|
|
||||||
|
attn = attn.softmax(dim=-1)
|
||||||
|
attn = self.attn_drop(attn)
|
||||||
|
|
||||||
|
x = (attn @ v).transpose(1, 2).reshape(B, N, -1)
|
||||||
|
x = self.proj(x)
|
||||||
|
x = self.proj_drop(x)
|
||||||
|
return x
|
||||||
|
|
||||||
|
|
||||||
|
class Block(nn.Module):
|
||||||
|
def __init__(
|
||||||
|
self,
|
||||||
|
dim,
|
||||||
|
num_heads,
|
||||||
|
mlp_ratio=4.0,
|
||||||
|
qkv_bias=False,
|
||||||
|
qk_scale=None,
|
||||||
|
drop=0.0,
|
||||||
|
attn_drop=0.0,
|
||||||
|
drop_path=0.0,
|
||||||
|
init_values=None,
|
||||||
|
act_layer=nn.GELU,
|
||||||
|
norm_layer=nn.LayerNorm,
|
||||||
|
window_size=None,
|
||||||
|
attn_head_dim=None,
|
||||||
|
):
|
||||||
|
super().__init__()
|
||||||
|
self.norm1 = norm_layer(dim)
|
||||||
|
self.attn = Attention(
|
||||||
|
dim,
|
||||||
|
num_heads=num_heads,
|
||||||
|
qkv_bias=qkv_bias,
|
||||||
|
qk_scale=qk_scale,
|
||||||
|
attn_drop=attn_drop,
|
||||||
|
proj_drop=drop,
|
||||||
|
window_size=window_size,
|
||||||
|
attn_head_dim=attn_head_dim,
|
||||||
|
)
|
||||||
|
# NOTE: drop path for stochastic depth, we shall see if this is better than dropout here
|
||||||
|
self.drop_path = (
|
||||||
|
DropPath(drop_path) if drop_path > 0.0 else nn.Identity()
|
||||||
|
)
|
||||||
|
self.norm2 = norm_layer(dim)
|
||||||
|
mlp_hidden_dim = int(dim * mlp_ratio)
|
||||||
|
self.mlp = Mlp(
|
||||||
|
in_features=dim,
|
||||||
|
hidden_features=mlp_hidden_dim,
|
||||||
|
act_layer=act_layer,
|
||||||
|
drop=drop,
|
||||||
|
)
|
||||||
|
|
||||||
|
if init_values is not None and init_values > 0:
|
||||||
|
self.gamma_1 = nn.Parameter(
|
||||||
|
init_values * torch.ones((dim)), requires_grad=True
|
||||||
|
)
|
||||||
|
self.gamma_2 = nn.Parameter(
|
||||||
|
init_values * torch.ones((dim)), requires_grad=True
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
self.gamma_1, self.gamma_2 = None, None
|
||||||
|
|
||||||
|
def forward(self, x, rel_pos_bias=None):
|
||||||
|
if self.gamma_1 is None:
|
||||||
|
x = x + self.drop_path(
|
||||||
|
self.attn(self.norm1(x), rel_pos_bias=rel_pos_bias)
|
||||||
|
)
|
||||||
|
x = x + self.drop_path(self.mlp(self.norm2(x)))
|
||||||
|
else:
|
||||||
|
x = x + self.drop_path(
|
||||||
|
self.gamma_1
|
||||||
|
* self.attn(self.norm1(x), rel_pos_bias=rel_pos_bias)
|
||||||
|
)
|
||||||
|
x = x + self.drop_path(self.gamma_2 * self.mlp(self.norm2(x)))
|
||||||
|
return x
|
||||||
|
|
||||||
|
|
||||||
|
class PatchEmbed(nn.Module):
|
||||||
|
"""Image to Patch Embedding"""
|
||||||
|
|
||||||
|
def __init__(self, img_size=224, patch_size=16, in_chans=3, embed_dim=768):
|
||||||
|
super().__init__()
|
||||||
|
img_size = to_2tuple(img_size)
|
||||||
|
patch_size = to_2tuple(patch_size)
|
||||||
|
num_patches = (img_size[1] // patch_size[1]) * (
|
||||||
|
img_size[0] // patch_size[0]
|
||||||
|
)
|
||||||
|
self.patch_shape = (
|
||||||
|
img_size[0] // patch_size[0],
|
||||||
|
img_size[1] // patch_size[1],
|
||||||
|
)
|
||||||
|
self.img_size = img_size
|
||||||
|
self.patch_size = patch_size
|
||||||
|
self.num_patches = num_patches
|
||||||
|
|
||||||
|
self.proj = nn.Conv2d(
|
||||||
|
in_chans, embed_dim, kernel_size=patch_size, stride=patch_size
|
||||||
|
)
|
||||||
|
|
||||||
|
def forward(self, x, **kwargs):
|
||||||
|
B, C, H, W = x.shape
|
||||||
|
# FIXME look at relaxing size constraints
|
||||||
|
assert (
|
||||||
|
H == self.img_size[0] and W == self.img_size[1]
|
||||||
|
), f"Input image size ({H}*{W}) doesn't match model ({self.img_size[0]}*{self.img_size[1]})."
|
||||||
|
x = self.proj(x).flatten(2).transpose(1, 2)
|
||||||
|
return x
|
||||||
|
|
||||||
|
|
||||||
|
class RelativePositionBias(nn.Module):
|
||||||
|
def __init__(self, window_size, num_heads):
|
||||||
|
super().__init__()
|
||||||
|
self.window_size = window_size
|
||||||
|
self.num_relative_distance = (2 * window_size[0] - 1) * (
|
||||||
|
2 * window_size[1] - 1
|
||||||
|
) + 3
|
||||||
|
self.relative_position_bias_table = nn.Parameter(
|
||||||
|
torch.zeros(self.num_relative_distance, num_heads)
|
||||||
|
) # 2*Wh-1 * 2*Ww-1, nH
|
||||||
|
# cls to token & token 2 cls & cls to cls
|
||||||
|
|
||||||
|
# get pair-wise relative position index for each token inside the window
|
||||||
|
coords_h = torch.arange(window_size[0])
|
||||||
|
coords_w = torch.arange(window_size[1])
|
||||||
|
coords = torch.stack(torch.meshgrid([coords_h, coords_w])) # 2, Wh, Ww
|
||||||
|
coords_flatten = torch.flatten(coords, 1) # 2, Wh*Ww
|
||||||
|
relative_coords = (
|
||||||
|
coords_flatten[:, :, None] - coords_flatten[:, None, :]
|
||||||
|
) # 2, Wh*Ww, Wh*Ww
|
||||||
|
relative_coords = relative_coords.permute(
|
||||||
|
1, 2, 0
|
||||||
|
).contiguous() # Wh*Ww, Wh*Ww, 2
|
||||||
|
relative_coords[:, :, 0] += window_size[0] - 1 # shift to start from 0
|
||||||
|
relative_coords[:, :, 1] += window_size[1] - 1
|
||||||
|
relative_coords[:, :, 0] *= 2 * window_size[1] - 1
|
||||||
|
relative_position_index = torch.zeros(
|
||||||
|
size=(window_size[0] * window_size[1] + 1,) * 2,
|
||||||
|
dtype=relative_coords.dtype,
|
||||||
|
)
|
||||||
|
relative_position_index[1:, 1:] = relative_coords.sum(
|
||||||
|
-1
|
||||||
|
) # Wh*Ww, Wh*Ww
|
||||||
|
relative_position_index[0, 0:] = self.num_relative_distance - 3
|
||||||
|
relative_position_index[0:, 0] = self.num_relative_distance - 2
|
||||||
|
relative_position_index[0, 0] = self.num_relative_distance - 1
|
||||||
|
|
||||||
|
self.register_buffer(
|
||||||
|
"relative_position_index", relative_position_index
|
||||||
|
)
|
||||||
|
|
||||||
|
# trunc_normal_(self.relative_position_bias_table, std=.02)
|
||||||
|
|
||||||
|
def forward(self):
|
||||||
|
relative_position_bias = self.relative_position_bias_table[
|
||||||
|
self.relative_position_index.view(-1)
|
||||||
|
].view(
|
||||||
|
self.window_size[0] * self.window_size[1] + 1,
|
||||||
|
self.window_size[0] * self.window_size[1] + 1,
|
||||||
|
-1,
|
||||||
|
) # Wh*Ww,Wh*Ww,nH
|
||||||
|
return relative_position_bias.permute(
|
||||||
|
2, 0, 1
|
||||||
|
).contiguous() # nH, Wh*Ww, Wh*Ww
|
||||||
|
|
||||||
|
|
||||||
|
class VisionTransformer(nn.Module):
|
||||||
|
"""Vision Transformer with support for patch or hybrid CNN input stage"""
|
||||||
|
|
||||||
|
def __init__(
|
||||||
|
self,
|
||||||
|
img_size=224,
|
||||||
|
patch_size=16,
|
||||||
|
in_chans=3,
|
||||||
|
num_classes=1000,
|
||||||
|
embed_dim=768,
|
||||||
|
depth=12,
|
||||||
|
num_heads=12,
|
||||||
|
mlp_ratio=4.0,
|
||||||
|
qkv_bias=False,
|
||||||
|
qk_scale=None,
|
||||||
|
drop_rate=0.0,
|
||||||
|
attn_drop_rate=0.0,
|
||||||
|
drop_path_rate=0.0,
|
||||||
|
norm_layer=nn.LayerNorm,
|
||||||
|
init_values=None,
|
||||||
|
use_abs_pos_emb=True,
|
||||||
|
use_rel_pos_bias=False,
|
||||||
|
use_shared_rel_pos_bias=False,
|
||||||
|
use_mean_pooling=True,
|
||||||
|
init_scale=0.001,
|
||||||
|
use_checkpoint=False,
|
||||||
|
):
|
||||||
|
super().__init__()
|
||||||
|
self.image_size = img_size
|
||||||
|
self.num_classes = num_classes
|
||||||
|
self.num_features = (
|
||||||
|
self.embed_dim
|
||||||
|
) = embed_dim # num_features for consistency with other models
|
||||||
|
|
||||||
|
self.patch_embed = PatchEmbed(
|
||||||
|
img_size=img_size,
|
||||||
|
patch_size=patch_size,
|
||||||
|
in_chans=in_chans,
|
||||||
|
embed_dim=embed_dim,
|
||||||
|
)
|
||||||
|
num_patches = self.patch_embed.num_patches
|
||||||
|
|
||||||
|
self.cls_token = nn.Parameter(torch.zeros(1, 1, embed_dim))
|
||||||
|
if use_abs_pos_emb:
|
||||||
|
self.pos_embed = nn.Parameter(
|
||||||
|
torch.zeros(1, num_patches + 1, embed_dim)
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
self.pos_embed = None
|
||||||
|
self.pos_drop = nn.Dropout(p=drop_rate)
|
||||||
|
|
||||||
|
if use_shared_rel_pos_bias:
|
||||||
|
self.rel_pos_bias = RelativePositionBias(
|
||||||
|
window_size=self.patch_embed.patch_shape, num_heads=num_heads
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
self.rel_pos_bias = None
|
||||||
|
self.use_checkpoint = use_checkpoint
|
||||||
|
|
||||||
|
dpr = [
|
||||||
|
x.item() for x in torch.linspace(0, drop_path_rate, depth)
|
||||||
|
] # stochastic depth decay rule
|
||||||
|
self.use_rel_pos_bias = use_rel_pos_bias
|
||||||
|
self.blocks = nn.ModuleList(
|
||||||
|
[
|
||||||
|
Block(
|
||||||
|
dim=embed_dim,
|
||||||
|
num_heads=num_heads,
|
||||||
|
mlp_ratio=mlp_ratio,
|
||||||
|
qkv_bias=qkv_bias,
|
||||||
|
qk_scale=qk_scale,
|
||||||
|
drop=drop_rate,
|
||||||
|
attn_drop=attn_drop_rate,
|
||||||
|
drop_path=dpr[i],
|
||||||
|
norm_layer=norm_layer,
|
||||||
|
init_values=init_values,
|
||||||
|
window_size=self.patch_embed.patch_shape
|
||||||
|
if use_rel_pos_bias
|
||||||
|
else None,
|
||||||
|
)
|
||||||
|
for i in range(depth)
|
||||||
|
]
|
||||||
|
)
|
||||||
|
# self.norm = nn.Identity() if use_mean_pooling else norm_layer(embed_dim)
|
||||||
|
# self.fc_norm = norm_layer(embed_dim) if use_mean_pooling else None
|
||||||
|
# self.head = nn.Linear(embed_dim, num_classes) if num_classes > 0 else nn.Identity()
|
||||||
|
|
||||||
|
if self.pos_embed is not None:
|
||||||
|
trunc_normal_(self.pos_embed, std=0.02)
|
||||||
|
trunc_normal_(self.cls_token, std=0.02)
|
||||||
|
# trunc_normal_(self.mask_token, std=.02)
|
||||||
|
# if isinstance(self.head, nn.Linear):
|
||||||
|
# trunc_normal_(self.head.weight, std=.02)
|
||||||
|
self.apply(self._init_weights)
|
||||||
|
self.fix_init_weight()
|
||||||
|
|
||||||
|
# if isinstance(self.head, nn.Linear):
|
||||||
|
# self.head.weight.data.mul_(init_scale)
|
||||||
|
# self.head.bias.data.mul_(init_scale)
|
||||||
|
|
||||||
|
def fix_init_weight(self):
|
||||||
|
def rescale(param, layer_id):
|
||||||
|
param.div_(math.sqrt(2.0 * layer_id))
|
||||||
|
|
||||||
|
for layer_id, layer in enumerate(self.blocks):
|
||||||
|
rescale(layer.attn.proj.weight.data, layer_id + 1)
|
||||||
|
rescale(layer.mlp.fc2.weight.data, layer_id + 1)
|
||||||
|
|
||||||
|
def _init_weights(self, m):
|
||||||
|
if isinstance(m, nn.Linear):
|
||||||
|
trunc_normal_(m.weight, std=0.02)
|
||||||
|
if isinstance(m, nn.Linear) and m.bias is not None:
|
||||||
|
nn.init.constant_(m.bias, 0)
|
||||||
|
elif isinstance(m, nn.LayerNorm):
|
||||||
|
nn.init.constant_(m.bias, 0)
|
||||||
|
nn.init.constant_(m.weight, 1.0)
|
||||||
|
|
||||||
|
def get_classifier(self):
|
||||||
|
return self.head
|
||||||
|
|
||||||
|
def reset_classifier(self, num_classes, global_pool=""):
|
||||||
|
self.num_classes = num_classes
|
||||||
|
self.head = (
|
||||||
|
nn.Linear(self.embed_dim, num_classes)
|
||||||
|
if num_classes > 0
|
||||||
|
else nn.Identity()
|
||||||
|
)
|
||||||
|
|
||||||
|
def forward_features(self, x):
|
||||||
|
x = self.patch_embed(x)
|
||||||
|
batch_size, seq_len, _ = x.size()
|
||||||
|
|
||||||
|
cls_tokens = self.cls_token.expand(
|
||||||
|
batch_size, -1, -1
|
||||||
|
) # stole cls_tokens impl from Phil Wang, thanks
|
||||||
|
x = torch.cat((cls_tokens, x), dim=1)
|
||||||
|
if self.pos_embed is not None:
|
||||||
|
x = x + self.pos_embed
|
||||||
|
x = self.pos_drop(x)
|
||||||
|
|
||||||
|
rel_pos_bias = (
|
||||||
|
self.rel_pos_bias() if self.rel_pos_bias is not None else None
|
||||||
|
)
|
||||||
|
for blk in self.blocks:
|
||||||
|
if self.use_checkpoint:
|
||||||
|
x = checkpoint.checkpoint(blk, x, rel_pos_bias)
|
||||||
|
else:
|
||||||
|
x = blk(x, rel_pos_bias)
|
||||||
|
return x
|
||||||
|
|
||||||
|
# x = self.norm(x)
|
||||||
|
|
||||||
|
# if self.fc_norm is not None:
|
||||||
|
# t = x[:, 1:, :]
|
||||||
|
# return self.fc_norm(t.mean(1))
|
||||||
|
# else:
|
||||||
|
# return x[:, 0]
|
||||||
|
|
||||||
|
def forward(self, x):
|
||||||
|
x = self.forward_features(x)
|
||||||
|
# x = self.head(x)
|
||||||
|
return x
|
||||||
|
|
||||||
|
def get_intermediate_layers(self, x):
|
||||||
|
x = self.patch_embed(x)
|
||||||
|
batch_size, seq_len, _ = x.size()
|
||||||
|
|
||||||
|
cls_tokens = self.cls_token.expand(
|
||||||
|
batch_size, -1, -1
|
||||||
|
) # stole cls_tokens impl from Phil Wang, thanks
|
||||||
|
x = torch.cat((cls_tokens, x), dim=1)
|
||||||
|
if self.pos_embed is not None:
|
||||||
|
x = x + self.pos_embed
|
||||||
|
x = self.pos_drop(x)
|
||||||
|
|
||||||
|
features = []
|
||||||
|
rel_pos_bias = (
|
||||||
|
self.rel_pos_bias() if self.rel_pos_bias is not None else None
|
||||||
|
)
|
||||||
|
for blk in self.blocks:
|
||||||
|
x = blk(x, rel_pos_bias)
|
||||||
|
features.append(x)
|
||||||
|
|
||||||
|
return features
|
||||||
|
|
||||||
|
|
||||||
|
def interpolate_pos_embed(model, checkpoint_model):
|
||||||
|
if "pos_embed" in checkpoint_model:
|
||||||
|
pos_embed_checkpoint = checkpoint_model["pos_embed"].float()
|
||||||
|
embedding_size = pos_embed_checkpoint.shape[-1]
|
||||||
|
num_patches = model.patch_embed.num_patches
|
||||||
|
num_extra_tokens = model.pos_embed.shape[-2] - num_patches
|
||||||
|
# height (== width) for the checkpoint position embedding
|
||||||
|
orig_size = int(
|
||||||
|
(pos_embed_checkpoint.shape[-2] - num_extra_tokens) ** 0.5
|
||||||
|
)
|
||||||
|
# height (== width) for the new position embedding
|
||||||
|
new_size = int(num_patches**0.5)
|
||||||
|
# class_token and dist_token are kept unchanged
|
||||||
|
if orig_size != new_size:
|
||||||
|
print(
|
||||||
|
"Position interpolate from %dx%d to %dx%d"
|
||||||
|
% (orig_size, orig_size, new_size, new_size)
|
||||||
|
)
|
||||||
|
extra_tokens = pos_embed_checkpoint[:, :num_extra_tokens]
|
||||||
|
# only the position tokens are interpolated
|
||||||
|
pos_tokens = pos_embed_checkpoint[:, num_extra_tokens:]
|
||||||
|
pos_tokens = pos_tokens.reshape(
|
||||||
|
-1, orig_size, orig_size, embedding_size
|
||||||
|
).permute(0, 3, 1, 2)
|
||||||
|
pos_tokens = torch.nn.functional.interpolate(
|
||||||
|
pos_tokens,
|
||||||
|
size=(new_size, new_size),
|
||||||
|
mode="bicubic",
|
||||||
|
align_corners=False,
|
||||||
|
)
|
||||||
|
pos_tokens = pos_tokens.permute(0, 2, 3, 1).flatten(1, 2)
|
||||||
|
new_pos_embed = torch.cat((extra_tokens, pos_tokens), dim=1)
|
||||||
|
checkpoint_model["pos_embed"] = new_pos_embed
|
||||||
|
|
||||||
|
|
||||||
|
def convert_weights_to_fp16(model: nn.Module):
|
||||||
|
"""Convert applicable model parameters to fp16"""
|
||||||
|
|
||||||
|
def _convert_weights_to_fp16(l):
|
||||||
|
if isinstance(l, (nn.Conv1d, nn.Conv2d, nn.Linear)):
|
||||||
|
# l.weight.data = l.weight.data.half()
|
||||||
|
l.weight.data = l.weight.data
|
||||||
|
if l.bias is not None:
|
||||||
|
# l.bias.data = l.bias.data.half()
|
||||||
|
l.bias.data = l.bias.data
|
||||||
|
|
||||||
|
# if isinstance(l, (nn.MultiheadAttention, Attention)):
|
||||||
|
# for attr in [*[f"{s}_proj_weight" for s in ["in", "q", "k", "v"]], "in_proj_bias", "bias_k", "bias_v"]:
|
||||||
|
# tensor = getattr(l, attr)
|
||||||
|
# if tensor is not None:
|
||||||
|
# tensor.data = tensor.data.half()
|
||||||
|
|
||||||
|
model.apply(_convert_weights_to_fp16)
|
||||||
|
|
||||||
|
|
||||||
|
def create_eva_vit_g(
|
||||||
|
img_size=224, drop_path_rate=0.4, use_checkpoint=False, precision="fp16"
|
||||||
|
):
|
||||||
|
model = VisionTransformer(
|
||||||
|
img_size=img_size,
|
||||||
|
patch_size=14,
|
||||||
|
use_mean_pooling=False,
|
||||||
|
embed_dim=1408,
|
||||||
|
depth=39,
|
||||||
|
num_heads=1408 // 88,
|
||||||
|
mlp_ratio=4.3637,
|
||||||
|
qkv_bias=True,
|
||||||
|
drop_path_rate=drop_path_rate,
|
||||||
|
norm_layer=partial(nn.LayerNorm, eps=1e-6),
|
||||||
|
use_checkpoint=use_checkpoint,
|
||||||
|
)
|
||||||
|
url = "https://storage.googleapis.com/sfr-vision-language-research/LAVIS/models/BLIP2/eva_vit_g.pth"
|
||||||
|
|
||||||
|
local_filename = "eva_vit_g.pth"
|
||||||
|
response = requests.get(url)
|
||||||
|
if response.status_code == 200:
|
||||||
|
with open(local_filename, "wb") as f:
|
||||||
|
f.write(response.content)
|
||||||
|
print("File downloaded successfully.")
|
||||||
|
state_dict = torch.load(local_filename, map_location="cpu")
|
||||||
|
interpolate_pos_embed(model, state_dict)
|
||||||
|
|
||||||
|
incompatible_keys = model.load_state_dict(state_dict, strict=False)
|
||||||
|
|
||||||
|
if precision == "fp16":
|
||||||
|
# model.to("cuda")
|
||||||
|
convert_weights_to_fp16(model)
|
||||||
|
return model
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
<Img><ImageHere></Img> Describe this image in detail.
|
||||||
|
<Img><ImageHere></Img> Take a look at this image and describe what you notice.
|
||||||
|
<Img><ImageHere></Img> Please provide a detailed description of the picture.
|
||||||
|
<Img><ImageHere></Img> Could you describe the contents of this image for me?
|
||||||
@@ -3,6 +3,7 @@ from torch.fx.experimental.proxy_tensor import make_fx
|
|||||||
from torch._decomp import get_decompositions
|
from torch._decomp import get_decompositions
|
||||||
from typing import List
|
from typing import List
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
from shark.shark_downloader import download_public_file
|
||||||
|
|
||||||
|
|
||||||
# expects a Path / str as arg
|
# expects a Path / str as arg
|
||||||
@@ -17,9 +18,23 @@ def get_vmfb_from_path(vmfb_path, device, mlir_dialect):
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
print("Loading vmfb from: ", vmfb_path)
|
print("Loading vmfb from: ", vmfb_path)
|
||||||
|
print("Device from get_vmfb_from_path - ", device)
|
||||||
shark_module = SharkInference(
|
shark_module = SharkInference(
|
||||||
None, device=device, mlir_dialect=mlir_dialect
|
None, device=device, mlir_dialect=mlir_dialect
|
||||||
)
|
)
|
||||||
shark_module.load_module(vmfb_path)
|
shark_module.load_module(vmfb_path)
|
||||||
print("Successfully loaded vmfb")
|
print("Successfully loaded vmfb")
|
||||||
return shark_module
|
return shark_module
|
||||||
|
|
||||||
|
|
||||||
|
def get_vmfb_from_config(
|
||||||
|
shark_container, model, precision, device, vmfb_path, padding=None
|
||||||
|
):
|
||||||
|
vmfb_url = (
|
||||||
|
f"gs://shark_tank/{shark_container}/{model}_{precision}_{device}"
|
||||||
|
)
|
||||||
|
if padding:
|
||||||
|
vmfb_url = vmfb_url + f"_{padding}"
|
||||||
|
vmfb_url = vmfb_url + ".vmfb"
|
||||||
|
download_public_file(vmfb_url, vmfb_path.absolute(), single_file=True)
|
||||||
|
return get_vmfb_from_path(vmfb_path, device, "tm_tensor")
|
||||||
|
|||||||
@@ -7,7 +7,11 @@ import sys
|
|||||||
sys.setrecursionlimit(sys.getrecursionlimit() * 5)
|
sys.setrecursionlimit(sys.getrecursionlimit() * 5)
|
||||||
|
|
||||||
# python path for pyinstaller
|
# python path for pyinstaller
|
||||||
pathex = [".", "./apps/language_models/langchain"]
|
pathex = [
|
||||||
|
".",
|
||||||
|
"./apps/language_models/langchain",
|
||||||
|
"./apps/language_models/src/pipelines/minigpt4_utils",
|
||||||
|
]
|
||||||
|
|
||||||
# datafiles for pyinstaller
|
# datafiles for pyinstaller
|
||||||
datas = []
|
datas = []
|
||||||
@@ -39,6 +43,7 @@ datas += collect_data_files("gradio_client")
|
|||||||
datas += collect_data_files("iree")
|
datas += collect_data_files("iree")
|
||||||
datas += collect_data_files("google_cloud_storage")
|
datas += collect_data_files("google_cloud_storage")
|
||||||
datas += collect_data_files("shark")
|
datas += collect_data_files("shark")
|
||||||
|
datas += collect_data_files("timm", include_py_files=True)
|
||||||
datas += collect_data_files("tkinter")
|
datas += collect_data_files("tkinter")
|
||||||
datas += collect_data_files("webview")
|
datas += collect_data_files("webview")
|
||||||
datas += collect_data_files("sentencepiece")
|
datas += collect_data_files("sentencepiece")
|
||||||
@@ -52,6 +57,14 @@ datas += [
|
|||||||
("src/utils/resources/base_model.json", "resources"),
|
("src/utils/resources/base_model.json", "resources"),
|
||||||
("web/ui/css/*", "ui/css"),
|
("web/ui/css/*", "ui/css"),
|
||||||
("web/ui/logos/*", "logos"),
|
("web/ui/logos/*", "logos"),
|
||||||
|
(
|
||||||
|
"../language_models/src/pipelines/minigpt4_utils/configs/*",
|
||||||
|
"minigpt4_utils/configs",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"../language_models/src/pipelines/minigpt4_utils/prompts/*",
|
||||||
|
"minigpt4_utils/prompts",
|
||||||
|
),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -161,6 +161,7 @@ if __name__ == "__main__":
|
|||||||
modelmanager_sendto_outpaint,
|
modelmanager_sendto_outpaint,
|
||||||
modelmanager_sendto_upscaler,
|
modelmanager_sendto_upscaler,
|
||||||
stablelm_chat,
|
stablelm_chat,
|
||||||
|
minigpt4_web,
|
||||||
outputgallery_web,
|
outputgallery_web,
|
||||||
outputgallery_tab_select,
|
outputgallery_tab_select,
|
||||||
outputgallery_watch,
|
outputgallery_watch,
|
||||||
@@ -226,8 +227,10 @@ if __name__ == "__main__":
|
|||||||
stablelm_chat.render()
|
stablelm_chat.render()
|
||||||
with gr.TabItem(label="LoRA Training(Experimental)", id=7):
|
with gr.TabItem(label="LoRA Training(Experimental)", id=7):
|
||||||
lora_train_web.render()
|
lora_train_web.render()
|
||||||
|
with gr.TabItem(label="MultiModal (Experimental)", id=8):
|
||||||
|
minigpt4_web.render()
|
||||||
if args.output_gallery:
|
if args.output_gallery:
|
||||||
with gr.TabItem(label="Output Gallery", id=8) as og_tab:
|
with gr.TabItem(label="Output Gallery", id=9) as og_tab:
|
||||||
outputgallery_web.render()
|
outputgallery_web.render()
|
||||||
|
|
||||||
# extra output gallery configuration
|
# extra output gallery configuration
|
||||||
|
|||||||
@@ -79,6 +79,7 @@ from apps.stable_diffusion.web.ui.stablelm_ui import (
|
|||||||
llm_chat_api,
|
llm_chat_api,
|
||||||
)
|
)
|
||||||
from apps.stable_diffusion.web.ui.h2ogpt import h2ogpt_web
|
from apps.stable_diffusion.web.ui.h2ogpt import h2ogpt_web
|
||||||
|
from apps.stable_diffusion.web.ui.minigpt4_ui import minigpt4_web
|
||||||
from apps.stable_diffusion.web.ui.outputgallery_ui import (
|
from apps.stable_diffusion.web.ui.outputgallery_ui import (
|
||||||
outputgallery_web,
|
outputgallery_web,
|
||||||
outputgallery_tab_select,
|
outputgallery_tab_select,
|
||||||
|
|||||||
193
apps/stable_diffusion/web/ui/minigpt4_ui.py
Normal file
193
apps/stable_diffusion/web/ui/minigpt4_ui.py
Normal file
@@ -0,0 +1,193 @@
|
|||||||
|
# ========================================
|
||||||
|
# Gradio Setting
|
||||||
|
# ========================================
|
||||||
|
import gradio as gr
|
||||||
|
|
||||||
|
# from apps.language_models.src.pipelines.minigpt4_pipeline import (
|
||||||
|
# # MiniGPT4,
|
||||||
|
# CONV_VISION,
|
||||||
|
# )
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
chat = None
|
||||||
|
|
||||||
|
|
||||||
|
def gradio_reset(chat_state, img_list):
|
||||||
|
if chat_state is not None:
|
||||||
|
chat_state.messages = []
|
||||||
|
if img_list is not None:
|
||||||
|
img_list = []
|
||||||
|
return (
|
||||||
|
None,
|
||||||
|
gr.update(value=None, interactive=True),
|
||||||
|
gr.update(
|
||||||
|
placeholder="Please upload your image first", interactive=False
|
||||||
|
),
|
||||||
|
gr.update(value="Upload & Start Chat", interactive=True),
|
||||||
|
chat_state,
|
||||||
|
img_list,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def upload_img(gr_img, text_input, chat_state, device, precision, _compile):
|
||||||
|
global chat
|
||||||
|
if chat is None:
|
||||||
|
from apps.language_models.src.pipelines.minigpt4_pipeline import (
|
||||||
|
MiniGPT4,
|
||||||
|
CONV_VISION,
|
||||||
|
)
|
||||||
|
|
||||||
|
vision_model_precision = precision
|
||||||
|
if precision in ["int4", "int8"]:
|
||||||
|
vision_model_precision = "fp16"
|
||||||
|
vision_model_vmfb_path = Path(
|
||||||
|
f"vision_model_{vision_model_precision}_{device}.vmfb"
|
||||||
|
)
|
||||||
|
qformer_vmfb_path = Path(f"qformer_fp32_{device}.vmfb")
|
||||||
|
chat = MiniGPT4(
|
||||||
|
model_name="MiniGPT4",
|
||||||
|
hf_model_path=None,
|
||||||
|
max_new_tokens=30,
|
||||||
|
device=device,
|
||||||
|
precision=precision,
|
||||||
|
_compile=_compile,
|
||||||
|
vision_model_vmfb_path=vision_model_vmfb_path,
|
||||||
|
qformer_vmfb_path=qformer_vmfb_path,
|
||||||
|
)
|
||||||
|
if gr_img is None:
|
||||||
|
return None, None, gr.update(interactive=True), chat_state, None
|
||||||
|
chat_state = CONV_VISION.copy()
|
||||||
|
img_list = []
|
||||||
|
llm_message = chat.upload_img(gr_img, chat_state, img_list)
|
||||||
|
return (
|
||||||
|
gr.update(interactive=False),
|
||||||
|
gr.update(interactive=True, placeholder="Type and press Enter"),
|
||||||
|
gr.update(value="Start Chatting", interactive=False),
|
||||||
|
chat_state,
|
||||||
|
img_list,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def gradio_ask(user_message, chatbot, chat_state):
|
||||||
|
if len(user_message) == 0:
|
||||||
|
return (
|
||||||
|
gr.update(
|
||||||
|
interactive=True, placeholder="Input should not be empty!"
|
||||||
|
),
|
||||||
|
chatbot,
|
||||||
|
chat_state,
|
||||||
|
)
|
||||||
|
chat.ask(user_message, chat_state)
|
||||||
|
chatbot = chatbot + [[user_message, None]]
|
||||||
|
return "", chatbot, chat_state
|
||||||
|
|
||||||
|
|
||||||
|
def gradio_answer(chatbot, chat_state, img_list, num_beams, temperature):
|
||||||
|
llm_message = chat.answer(
|
||||||
|
conv=chat_state,
|
||||||
|
img_list=img_list,
|
||||||
|
num_beams=num_beams,
|
||||||
|
temperature=temperature,
|
||||||
|
max_new_tokens=300,
|
||||||
|
max_length=2000,
|
||||||
|
)[0]
|
||||||
|
print(llm_message)
|
||||||
|
print("************")
|
||||||
|
chatbot[-1][1] = llm_message
|
||||||
|
return chatbot, chat_state, img_list
|
||||||
|
|
||||||
|
|
||||||
|
title = """<h1 align="center">MultiModal SHARK (experimental)</h1>"""
|
||||||
|
description = """<h3>Upload your images and start chatting!</h3>"""
|
||||||
|
article = """<p><a href='https://minigpt-4.github.io'><img src='https://img.shields.io/badge/Project-Page-Green'></a></p><p><a href='https://github.com/Vision-CAIR/MiniGPT-4'><img src='https://img.shields.io/badge/Github-Code-blue'></a></p><p><a href='https://raw.githubusercontent.com/Vision-CAIR/MiniGPT-4/main/MiniGPT_4.pdf'><img src='https://img.shields.io/badge/Paper-PDF-red'></a></p>
|
||||||
|
"""
|
||||||
|
|
||||||
|
# TODO show examples below
|
||||||
|
|
||||||
|
with gr.Blocks() as minigpt4_web:
|
||||||
|
gr.Markdown(title)
|
||||||
|
gr.Markdown(description)
|
||||||
|
|
||||||
|
with gr.Row():
|
||||||
|
with gr.Column(scale=0.5):
|
||||||
|
image = gr.Image(type="pil")
|
||||||
|
upload_button = gr.Button(
|
||||||
|
value="Upload & Start Chat",
|
||||||
|
interactive=True,
|
||||||
|
variant="primary",
|
||||||
|
)
|
||||||
|
clear = gr.Button("Restart")
|
||||||
|
|
||||||
|
num_beams = gr.Slider(
|
||||||
|
minimum=1,
|
||||||
|
maximum=10,
|
||||||
|
value=1,
|
||||||
|
step=1,
|
||||||
|
interactive=True,
|
||||||
|
label="beam search numbers)",
|
||||||
|
)
|
||||||
|
|
||||||
|
temperature = gr.Slider(
|
||||||
|
minimum=0.1,
|
||||||
|
maximum=2.0,
|
||||||
|
value=1.0,
|
||||||
|
step=0.1,
|
||||||
|
interactive=True,
|
||||||
|
label="Temperature",
|
||||||
|
)
|
||||||
|
|
||||||
|
device = gr.Dropdown(
|
||||||
|
label="Device",
|
||||||
|
value="cuda",
|
||||||
|
# if enabled
|
||||||
|
# else "Only CUDA Supported for now",
|
||||||
|
choices=["cuda"],
|
||||||
|
interactive=False,
|
||||||
|
)
|
||||||
|
|
||||||
|
with gr.Column():
|
||||||
|
chat_state = gr.State()
|
||||||
|
img_list = gr.State()
|
||||||
|
chatbot = gr.Chatbot(label="MiniGPT-4")
|
||||||
|
text_input = gr.Textbox(
|
||||||
|
label="User",
|
||||||
|
placeholder="Please upload your image first",
|
||||||
|
interactive=False,
|
||||||
|
)
|
||||||
|
precision = gr.Radio(
|
||||||
|
label="Precision",
|
||||||
|
value="int8",
|
||||||
|
choices=[
|
||||||
|
"int8",
|
||||||
|
"fp16",
|
||||||
|
"fp32",
|
||||||
|
],
|
||||||
|
visible=True,
|
||||||
|
)
|
||||||
|
_compile = gr.Checkbox(
|
||||||
|
value=False,
|
||||||
|
label="Compile",
|
||||||
|
interactive=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
upload_button.click(
|
||||||
|
upload_img,
|
||||||
|
[image, text_input, chat_state, device, precision, _compile],
|
||||||
|
[image, text_input, upload_button, chat_state, img_list],
|
||||||
|
)
|
||||||
|
|
||||||
|
text_input.submit(
|
||||||
|
gradio_ask,
|
||||||
|
[text_input, chatbot, chat_state],
|
||||||
|
[text_input, chatbot, chat_state],
|
||||||
|
).then(
|
||||||
|
gradio_answer,
|
||||||
|
[chatbot, chat_state, img_list, num_beams, temperature],
|
||||||
|
[chatbot, chat_state, img_list],
|
||||||
|
)
|
||||||
|
clear.click(
|
||||||
|
gradio_reset,
|
||||||
|
[chat_state, img_list],
|
||||||
|
[chatbot, image, text_input, upload_button, chat_state, img_list],
|
||||||
|
queue=False,
|
||||||
|
)
|
||||||
@@ -56,3 +56,14 @@ for line in fileinput.input(path_to_lazy_loader, inplace=True):
|
|||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
print(line, end="")
|
print(line, end="")
|
||||||
|
|
||||||
|
# For getting around timm's packaging.
|
||||||
|
# Refer: https://github.com/pyinstaller/pyinstaller/issues/5673#issuecomment-808731505
|
||||||
|
path_to_timm_activations = Path(
|
||||||
|
get_python_lib() + "/timm/layers/activations_jit.py"
|
||||||
|
)
|
||||||
|
for line in fileinput.input(path_to_timm_activations, inplace=True):
|
||||||
|
if "@torch.jit.script" in line:
|
||||||
|
print("@torch.jit._script_if_tracing", end="\n")
|
||||||
|
else:
|
||||||
|
print(line, end="")
|
||||||
|
|||||||
@@ -15,3 +15,4 @@ build-backend = "setuptools.build_meta"
|
|||||||
line-length = 79
|
line-length = 79
|
||||||
include = '\.pyi?$'
|
include = '\.pyi?$'
|
||||||
exclude = "apps/language_models/scripts/vicuna.py"
|
exclude = "apps/language_models/scripts/vicuna.py"
|
||||||
|
extend-exclude = "apps/language_models/src/pipelines/minigpt4_pipeline.py"
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ sentencepiece
|
|||||||
py-cpuinfo
|
py-cpuinfo
|
||||||
tiktoken # for codegen
|
tiktoken # for codegen
|
||||||
joblib # for langchain
|
joblib # for langchain
|
||||||
|
timm # for MiniGPT4
|
||||||
|
|
||||||
# Keep PyInstaller at the end. Sometimes Windows Defender flags it but most folks can continue even if it errors
|
# Keep PyInstaller at the end. Sometimes Windows Defender flags it but most folks can continue even if it errors
|
||||||
pefile
|
pefile
|
||||||
|
|||||||
@@ -2,6 +2,55 @@ import os
|
|||||||
import tempfile
|
import tempfile
|
||||||
from shark.shark_inference import SharkInference
|
from shark.shark_inference import SharkInference
|
||||||
from shark.shark_importer import import_with_fx
|
from shark.shark_importer import import_with_fx
|
||||||
|
import torch
|
||||||
|
import torch_mlir
|
||||||
|
from torch_mlir.compiler_utils import run_pipeline_with_repro_report
|
||||||
|
from typing import List, Tuple
|
||||||
|
from io import BytesIO
|
||||||
|
from brevitas_examples.llm.llm_quant.quantize import quantize_model
|
||||||
|
from brevitas_examples.llm.llm_quant.run_utils import get_model_impl
|
||||||
|
|
||||||
|
|
||||||
|
def brevitas〇matmul_rhs_group_quant〡shape(
|
||||||
|
lhs: List[int],
|
||||||
|
rhs: List[int],
|
||||||
|
rhs_scale: List[int],
|
||||||
|
rhs_zero_point: List[int],
|
||||||
|
rhs_bit_width: int,
|
||||||
|
rhs_group_size: int,
|
||||||
|
) -> List[int]:
|
||||||
|
if len(lhs) == 3 and len(rhs) == 2:
|
||||||
|
return [lhs[0], lhs[1], rhs[0]]
|
||||||
|
elif len(lhs) == 2 and len(rhs) == 2:
|
||||||
|
return [lhs[0], rhs[0]]
|
||||||
|
else:
|
||||||
|
raise ValueError("Input shapes not supported.")
|
||||||
|
|
||||||
|
|
||||||
|
def brevitas〇matmul_rhs_group_quant〡dtype(
|
||||||
|
lhs_rank_dtype: Tuple[int, int],
|
||||||
|
rhs_rank_dtype: Tuple[int, int],
|
||||||
|
rhs_scale_rank_dtype: Tuple[int, int],
|
||||||
|
rhs_zero_point_rank_dtype: Tuple[int, int],
|
||||||
|
rhs_bit_width: int,
|
||||||
|
rhs_group_size: int,
|
||||||
|
) -> int:
|
||||||
|
# output dtype is the dtype of the lhs float input
|
||||||
|
lhs_rank, lhs_dtype = lhs_rank_dtype
|
||||||
|
return lhs_dtype
|
||||||
|
|
||||||
|
|
||||||
|
def brevitas〇matmul_rhs_group_quant〡has_value_semantics(
|
||||||
|
lhs, rhs, rhs_scale, rhs_zero_point, rhs_bit_width, rhs_group_size
|
||||||
|
) -> None:
|
||||||
|
return
|
||||||
|
|
||||||
|
|
||||||
|
brevitas_matmul_rhs_group_quant_library = [
|
||||||
|
brevitas〇matmul_rhs_group_quant〡shape,
|
||||||
|
brevitas〇matmul_rhs_group_quant〡dtype,
|
||||||
|
brevitas〇matmul_rhs_group_quant〡has_value_semantics,
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
def load_vmfb(extended_model_name, device, mlir_dialect, extra_args=[]):
|
def load_vmfb(extended_model_name, device, mlir_dialect, extra_args=[]):
|
||||||
@@ -39,11 +88,90 @@ def compile_module(
|
|||||||
return shark_module
|
return shark_module
|
||||||
|
|
||||||
|
|
||||||
|
def compile_int_precision(
|
||||||
|
model, inputs, precision, device, generate_vmfb, extended_model_name
|
||||||
|
):
|
||||||
|
weight_bit_width = 4 if precision == "int4" else 8
|
||||||
|
weight_group_size = 128
|
||||||
|
quantize_model(
|
||||||
|
get_model_impl(model),
|
||||||
|
dtype=torch.float32,
|
||||||
|
weight_quant_type="asym",
|
||||||
|
weight_bit_width=weight_bit_width,
|
||||||
|
weight_param_method="stats",
|
||||||
|
weight_scale_precision="float",
|
||||||
|
weight_quant_granularity="per_group",
|
||||||
|
weight_group_size=weight_group_size,
|
||||||
|
quantize_weight_zero_point=False,
|
||||||
|
input_bit_width=None,
|
||||||
|
input_scale_type="float",
|
||||||
|
input_param_method="stats",
|
||||||
|
input_quant_type="asym",
|
||||||
|
input_quant_granularity="per_tensor",
|
||||||
|
quantize_input_zero_point=False,
|
||||||
|
seqlen=2048,
|
||||||
|
)
|
||||||
|
print("Weight quantization applied.")
|
||||||
|
torchscript_module = import_with_fx(
|
||||||
|
model,
|
||||||
|
inputs,
|
||||||
|
precision=precision,
|
||||||
|
mlir_type="torchscript",
|
||||||
|
)
|
||||||
|
mlir_module = torch_mlir.compile(
|
||||||
|
torchscript_module,
|
||||||
|
inputs,
|
||||||
|
output_type="torch",
|
||||||
|
backend_legal_ops=["brevitas.matmul_rhs_group_quant"],
|
||||||
|
extra_library=brevitas_matmul_rhs_group_quant_library,
|
||||||
|
use_tracing=False,
|
||||||
|
verbose=False,
|
||||||
|
)
|
||||||
|
print(f"[DEBUG] converting torch to linalg")
|
||||||
|
run_pipeline_with_repro_report(
|
||||||
|
mlir_module,
|
||||||
|
"builtin.module(func.func(torch-unpack-torch-tensor),torch-backend-to-linalg-on-tensors-backend-pipeline)",
|
||||||
|
description="Lowering Torch Backend IR -> Linalg-on-Tensors Backend IR",
|
||||||
|
)
|
||||||
|
from contextlib import redirect_stdout
|
||||||
|
|
||||||
|
mlir_file_path = os.path.join(
|
||||||
|
os.getcwd(), f"{extended_model_name}_linalg.mlir"
|
||||||
|
)
|
||||||
|
with open(mlir_file_path, "w") as f:
|
||||||
|
with redirect_stdout(f):
|
||||||
|
print(mlir_module.operation.get_asm())
|
||||||
|
mlir_module = str(mlir_module)
|
||||||
|
mlir_module = mlir_module.encode("UTF-8")
|
||||||
|
mlir_module = BytesIO(mlir_module)
|
||||||
|
bytecode = mlir_module.read()
|
||||||
|
print(f"Elided IR written for {extended_model_name}")
|
||||||
|
return bytecode
|
||||||
|
shark_module = SharkInference(
|
||||||
|
mlir_module=bytecode, device=device, mlir_dialect="tm_tensor"
|
||||||
|
)
|
||||||
|
extra_args = [
|
||||||
|
"--iree-hal-dump-executable-sources-to=ies",
|
||||||
|
"--iree-vm-target-truncate-unsupported-floats",
|
||||||
|
"--iree-codegen-check-ir-before-llvm-conversion=false",
|
||||||
|
"--iree-vm-bytecode-module-output-format=flatbuffer-binary",
|
||||||
|
]
|
||||||
|
return (
|
||||||
|
compile_module(
|
||||||
|
shark_module,
|
||||||
|
extended_model_name=extended_model_name,
|
||||||
|
generate_vmfb=generate_vmfb,
|
||||||
|
extra_args=extra_args,
|
||||||
|
),
|
||||||
|
bytecode,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def shark_compile_through_fx(
|
def shark_compile_through_fx(
|
||||||
model,
|
model,
|
||||||
inputs,
|
inputs,
|
||||||
extended_model_name,
|
extended_model_name,
|
||||||
is_f16=False,
|
precision,
|
||||||
f16_input_mask=None,
|
f16_input_mask=None,
|
||||||
save_dir=tempfile.gettempdir(),
|
save_dir=tempfile.gettempdir(),
|
||||||
debug=False,
|
debug=False,
|
||||||
@@ -52,6 +180,7 @@ def shark_compile_through_fx(
|
|||||||
device=None,
|
device=None,
|
||||||
mlir_dialect="tm_tensor",
|
mlir_dialect="tm_tensor",
|
||||||
):
|
):
|
||||||
|
is_f16 = precision == "fp16"
|
||||||
if generate_or_load_vmfb:
|
if generate_or_load_vmfb:
|
||||||
shark_module = load_vmfb(
|
shark_module = load_vmfb(
|
||||||
extended_model_name=extended_model_name,
|
extended_model_name=extended_model_name,
|
||||||
@@ -70,18 +199,34 @@ def shark_compile_through_fx(
|
|||||||
if "cuda" in device:
|
if "cuda" in device:
|
||||||
shark_args.enable_tf32 = True
|
shark_args.enable_tf32 = True
|
||||||
|
|
||||||
(
|
if precision in ["int4", "int8"]:
|
||||||
mlir_module,
|
mlir_module = compile_int_precision(
|
||||||
_,
|
model,
|
||||||
) = import_with_fx(
|
inputs,
|
||||||
model=model,
|
precision,
|
||||||
inputs=inputs,
|
device,
|
||||||
is_f16=is_f16,
|
generate_or_load_vmfb,
|
||||||
f16_input_mask=f16_input_mask,
|
extended_model_name,
|
||||||
debug=debug,
|
)
|
||||||
model_name=extended_model_name,
|
extra_args = [
|
||||||
save_dir=save_dir,
|
"--iree-hal-dump-executable-sources-to=ies",
|
||||||
)
|
"--iree-vm-target-truncate-unsupported-floats",
|
||||||
|
"--iree-codegen-check-ir-before-llvm-conversion=false",
|
||||||
|
"--iree-vm-bytecode-module-output-format=flatbuffer-binary",
|
||||||
|
]
|
||||||
|
else:
|
||||||
|
(
|
||||||
|
mlir_module,
|
||||||
|
_,
|
||||||
|
) = import_with_fx(
|
||||||
|
model=model,
|
||||||
|
inputs=inputs,
|
||||||
|
is_f16=is_f16,
|
||||||
|
f16_input_mask=f16_input_mask,
|
||||||
|
debug=debug,
|
||||||
|
model_name=extended_model_name,
|
||||||
|
save_dir=save_dir,
|
||||||
|
)
|
||||||
|
|
||||||
shark_module = SharkInference(
|
shark_module = SharkInference(
|
||||||
mlir_module,
|
mlir_module,
|
||||||
|
|||||||
Reference in New Issue
Block a user