-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Support intern-s1 #14875
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+122
−2
Merged
Support intern-s1 #14875
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
7cf5c4c
support internvl
RunningLeon 859796e
support interns1
RunningLeon 483ffef
resolve comments
RunningLeon 5eba3e3
put interns1 in tensor mapping
RunningLeon c71543c
resolve comment
RunningLeon 490a13f
move tokenizer changes to sub class
RunningLeon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -2998,7 +2998,13 @@ def modify_tensors(self, data_torch: Tensor, name: str, bid: int | None) -> Iter | |||||||||||||||||||||||||||||
@ModelBase.register("InternVisionModel") | ||||||||||||||||||||||||||||||
class InternVisionModel(MmprojModel): | ||||||||||||||||||||||||||||||
def set_gguf_parameters(self): | ||||||||||||||||||||||||||||||
assert self.hparams_vision is not None | ||||||||||||||||||||||||||||||
if isinstance(self.hparams_vision['image_size'], list): | ||||||||||||||||||||||||||||||
self.hparams_vision['image_size'] = self.hparams_vision['image_size'][0] | ||||||||||||||||||||||||||||||
if isinstance(self.hparams_vision['patch_size'], list): | ||||||||||||||||||||||||||||||
self.hparams_vision['patch_size'] = self.hparams_vision['patch_size'][0] | ||||||||||||||||||||||||||||||
super().set_gguf_parameters() | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
hparams = self.hparams | ||||||||||||||||||||||||||||||
self.gguf_writer.add_clip_projector_type(gguf.VisionProjectorType.INTERNVL) | ||||||||||||||||||||||||||||||
self.gguf_writer.add_vision_attention_layernorm_eps(hparams["layer_norm_eps"]) | ||||||||||||||||||||||||||||||
|
@@ -3022,14 +3028,30 @@ def tensor_force_quant(self, name, new_name, bid, n_dims): | |||||||||||||||||||||||||||||
return gguf.GGMLQuantizationType.F32 | ||||||||||||||||||||||||||||||
return False | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
def _mapping_interns1_name(self, name): | ||||||||||||||||||||||||||||||
names_map = { | ||||||||||||||||||||||||||||||
"model.multi_modal_projector.layer_norm.bias": "mlp1.0.bias", | ||||||||||||||||||||||||||||||
"model.multi_modal_projector.layer_norm.weight": "mlp1.0.weight", | ||||||||||||||||||||||||||||||
"model.multi_modal_projector.linear_1.bias": "mlp1.1.bias", | ||||||||||||||||||||||||||||||
"model.multi_modal_projector.linear_1.weight": "mlp1.1.weight", | ||||||||||||||||||||||||||||||
"model.multi_modal_projector.linear_2.bias": "mlp1.3.bias", | ||||||||||||||||||||||||||||||
"model.multi_modal_projector.linear_2.weight": "mlp1.3.weight", | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
RunningLeon marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||
if name in names_map: | ||||||||||||||||||||||||||||||
name = names_map[name] | ||||||||||||||||||||||||||||||
return name | ||||||||||||||||||||||||||||||
CISC marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
def modify_tensors(self, data_torch: Tensor, name: str, bid: int | None) -> Iterable[tuple[str, Tensor]]: | ||||||||||||||||||||||||||||||
del bid # unused | ||||||||||||||||||||||||||||||
if name.startswith("vision_model") or name.startswith("mlp"): | ||||||||||||||||||||||||||||||
vision_prefix = ['vision_model', 'mlp', 'model.vision_tower', 'model.multi_modal_projector'] | ||||||||||||||||||||||||||||||
# deal with intern-s1 special case | ||||||||||||||||||||||||||||||
name = self._mapping_interns1_name(name) | ||||||||||||||||||||||||||||||
if any([name.startswith(prefix) for prefix in vision_prefix]): | ||||||||||||||||||||||||||||||
# process visual tensors | ||||||||||||||||||||||||||||||
# correct name | ||||||||||||||||||||||||||||||
if name.startswith("vision_model"): | ||||||||||||||||||||||||||||||
name = "vision_tower." + name | ||||||||||||||||||||||||||||||
if (".ls" in name or "position_embedding" in name) and not name.endswith(".weight"): | ||||||||||||||||||||||||||||||
if (".ls" in name or ".lambda_" in name or "position_embedding" in name) and not name.endswith(".weight"): | ||||||||||||||||||||||||||||||
name += ".weight" | ||||||||||||||||||||||||||||||
# split QKV tensors if needed | ||||||||||||||||||||||||||||||
if ".qkv." in name: | ||||||||||||||||||||||||||||||
|
@@ -3115,6 +3137,10 @@ def set_gguf_parameters(self): | |||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
def modify_tensors(self, data_torch: Tensor, name: str, bid: int | None) -> Iterable[tuple[str, Tensor]]: | ||||||||||||||||||||||||||||||
# process the experts separately | ||||||||||||||||||||||||||||||
name = name.replace("language_model.", "") # InternVL | ||||||||||||||||||||||||||||||
if name.startswith("mlp") or name.startswith("vision_model") or name.startswith("model.vision_tower") or name.startswith("model.multi_modal_projector"): | ||||||||||||||||||||||||||||||
# skip visual tensors | ||||||||||||||||||||||||||||||
return [] | ||||||||||||||||||||||||||||||
if name.find("experts") != -1: | ||||||||||||||||||||||||||||||
n_experts = self.hparams["num_experts"] | ||||||||||||||||||||||||||||||
assert bid is not None | ||||||||||||||||||||||||||||||
|
@@ -3168,6 +3194,85 @@ class Qwen3Model(Qwen2Model): | |||||||||||||||||||||||||||||
class Qwen3MoeModel(Qwen2MoeModel): | ||||||||||||||||||||||||||||||
model_arch = gguf.MODEL_ARCH.QWEN3MOE | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
def __init__(self, *args, **kwargs): | ||||||||||||||||||||||||||||||
super().__init__(*args, **kwargs) | ||||||||||||||||||||||||||||||
hparams = ModelBase.load_hparams(self.dir_model) | ||||||||||||||||||||||||||||||
self.origin_hf_arch = hparams.get('architectures', [None])[0] | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
def set_vocab(self): | ||||||||||||||||||||||||||||||
# deal with intern-s1 | ||||||||||||||||||||||||||||||
if self.origin_hf_arch == 'InternS1ForConditionalGeneration': | ||||||||||||||||||||||||||||||
self._set_vocab_interns1() | ||||||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
try: | ||||||||||||||||||||||||||||||
self._set_vocab_sentencepiece() | ||||||||||||||||||||||||||||||
except FileNotFoundError: | ||||||||||||||||||||||||||||||
self._set_vocab_gpt2() | ||||||||||||||||||||||||||||||
Comment on lines
+3208
to
+3211
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
def _set_vocab_interns1(self): | ||||||||||||||||||||||||||||||
tokens: list[str] = [] | ||||||||||||||||||||||||||||||
toktypes: list[int] = [] | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
from transformers import AutoTokenizer | ||||||||||||||||||||||||||||||
tokenizer = AutoTokenizer.from_pretrained(self.dir_model, trust_remote_code=True) | ||||||||||||||||||||||||||||||
vocab = getattr(tokenizer, 'vocab', tokenizer.get_vocab()) | ||||||||||||||||||||||||||||||
vocab_size = self.hparams.get("vocab_size", len(vocab)) | ||||||||||||||||||||||||||||||
assert max(vocab.values()) < vocab_size | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
tokpre = self.get_vocab_base_pre(tokenizer) | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
reverse_vocab = {id_: encoded_tok for encoded_tok, id_ in vocab.items()} | ||||||||||||||||||||||||||||||
added_vocab = tokenizer.get_added_vocab() | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
added_tokens_decoder = tokenizer.added_tokens_decoder | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
for i in range(vocab_size): | ||||||||||||||||||||||||||||||
if i not in reverse_vocab: | ||||||||||||||||||||||||||||||
tokens.append(f"[PAD{i}]") | ||||||||||||||||||||||||||||||
toktypes.append(gguf.TokenType.UNUSED) | ||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||
token: str = reverse_vocab[i] | ||||||||||||||||||||||||||||||
if token in added_vocab: | ||||||||||||||||||||||||||||||
# The tokenizer in llama.cpp assumes the CONTROL and USER_DEFINED tokens are pre-normalized. | ||||||||||||||||||||||||||||||
# To avoid unexpected issues - we make sure to normalize non-normalized tokens | ||||||||||||||||||||||||||||||
if not added_tokens_decoder[i].normalized: | ||||||||||||||||||||||||||||||
previous_token = token | ||||||||||||||||||||||||||||||
token = tokenizer.decode(tokenizer.encode(token, add_special_tokens=False)) | ||||||||||||||||||||||||||||||
if previous_token != token: | ||||||||||||||||||||||||||||||
logger.info(f"{repr(previous_token)} is encoded and decoded back to {repr(token)} using AutoTokenizer") | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
if added_tokens_decoder[i].special or self.does_token_look_special(token): | ||||||||||||||||||||||||||||||
toktypes.append(gguf.TokenType.CONTROL) | ||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||
toktypes.append(gguf.TokenType.USER_DEFINED) | ||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||
toktypes.append(gguf.TokenType.NORMAL) | ||||||||||||||||||||||||||||||
tokens.append(token) | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
self.gguf_writer.add_tokenizer_model("gpt2") | ||||||||||||||||||||||||||||||
self.gguf_writer.add_tokenizer_pre(tokpre) | ||||||||||||||||||||||||||||||
self.gguf_writer.add_token_list(tokens) | ||||||||||||||||||||||||||||||
self.gguf_writer.add_token_types(toktypes) | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
special_vocab = gguf.SpecialVocab(self.dir_model, load_merges=True) | ||||||||||||||||||||||||||||||
special_tokens_map_file = self.dir_model / 'special_tokens_map.json' | ||||||||||||||||||||||||||||||
additional_special_tokens = [] | ||||||||||||||||||||||||||||||
if special_tokens_map_file.is_file(): | ||||||||||||||||||||||||||||||
with open(special_tokens_map_file, encoding = 'utf-8') as f: | ||||||||||||||||||||||||||||||
additional_special_tokens = json.load(f).get('additional_special_tokens', []) | ||||||||||||||||||||||||||||||
tokenizer_cfg_file = self.dir_model / 'special_tokens_map.json' | ||||||||||||||||||||||||||||||
if tokenizer_cfg_file.is_file(): | ||||||||||||||||||||||||||||||
with open(tokenizer_cfg_file, encoding = 'utf-8') as f: | ||||||||||||||||||||||||||||||
added_tokens_decoder = json.load(f).get('added_tokens_decoder', {}) | ||||||||||||||||||||||||||||||
token2ids_map = {data['content'] : int(token) for token, data in added_tokens_decoder.items() if data['special']} | ||||||||||||||||||||||||||||||
for token in additional_special_tokens: | ||||||||||||||||||||||||||||||
if token in token2ids_map: | ||||||||||||||||||||||||||||||
special_vocab._set_special_token(token, token2ids_map[token]) | ||||||||||||||||||||||||||||||
special_vocab._set_special_token('eos', 151645) | ||||||||||||||||||||||||||||||
Comment on lines
+3259
to
+3272
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||
special_vocab._set_special_token("bos", 151643) | ||||||||||||||||||||||||||||||
special_vocab.add_to_gguf(self.gguf_writer) | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
@ModelBase.register("GPT2LMHeadModel") | ||||||||||||||||||||||||||||||
class GPT2Model(TextModel): | ||||||||||||||||||||||||||||||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.