add shared experts for upcoming Granite 4.0 language models (#35894)
* Modular GraniteMoE with shared Experts. Signed-off-by: Shawn Tan <shawntan@ibm.com> * Modified * Import order. * Modified for style * Fix space. * Test * Remove extra granitemoe file. * New converted file and tests * Modified __init__ files. * Formatting. * Dummy PT objects * register granitemoe shared model Signed-off-by: Sukriti-Sharma4 <sukriti.sharma4@ibm.com> * fix linting of a file Signed-off-by: Sukriti-Sharma4 <sukriti.sharma4@ibm.com> * fix import in modeling file Signed-off-by: Sukriti-Sharma4 <sukriti.sharma4@ibm.com> * update generated modeling file Signed-off-by: Sukriti-Sharma4 <sukriti.sharma4@ibm.com> * add documentation Signed-off-by: Sukriti-Sharma4 <sukriti.sharma4@ibm.com> * update docstrings Signed-off-by: Sukriti-Sharma4 <sukriti.sharma4@ibm.com> * update generated modeling file Signed-off-by: Sukriti-Sharma4 <sukriti.sharma4@ibm.com> * fix docstrings in config class Signed-off-by: Sukriti-Sharma4 <sukriti.sharma4@ibm.com> * merge main Signed-off-by: Sukriti-Sharma4 <sukriti.sharma4@ibm.com> --------- Signed-off-by: Shawn Tan <shawntan@ibm.com> Signed-off-by: Sukriti-Sharma4 <sukriti.sharma4@ibm.com> Co-authored-by: Shawn Tan <shawntan@ibm.com> Co-authored-by: Shawn Tan <shawn@wtf.sg> Co-authored-by: Sukriti-Sharma4 <sukriti.sharma4@ibm.com> Co-authored-by: Sukriti Sharma <Ssukriti@users.noreply.github.com>
This commit is contained in:
@@ -461,6 +461,8 @@
|
|||||||
title: Granite
|
title: Granite
|
||||||
- local: model_doc/granitemoe
|
- local: model_doc/granitemoe
|
||||||
title: GraniteMoe
|
title: GraniteMoe
|
||||||
|
- local: model_doc/granitemoeshared
|
||||||
|
title: GraniteMoeShared
|
||||||
- local: model_doc/granitevision
|
- local: model_doc/granitevision
|
||||||
title: GraniteVision
|
title: GraniteVision
|
||||||
- local: model_doc/helium
|
- local: model_doc/helium
|
||||||
|
|||||||
@@ -173,6 +173,7 @@ Flax), PyTorch, and/or TensorFlow.
|
|||||||
| [GPTSAN-japanese](model_doc/gptsan-japanese) | ✅ | ❌ | ❌ |
|
| [GPTSAN-japanese](model_doc/gptsan-japanese) | ✅ | ❌ | ❌ |
|
||||||
| [Granite](model_doc/granite) | ✅ | ❌ | ❌ |
|
| [Granite](model_doc/granite) | ✅ | ❌ | ❌ |
|
||||||
| [GraniteMoeMoe](model_doc/granitemoe) | ✅ | ❌ | ❌ |
|
| [GraniteMoeMoe](model_doc/granitemoe) | ✅ | ❌ | ❌ |
|
||||||
|
| [GraniteMoeSharedMoe](model_doc/granitemoeshared) | ✅ | ❌ | ❌ |
|
||||||
| [Graphormer](model_doc/graphormer) | ✅ | ❌ | ❌ |
|
| [Graphormer](model_doc/graphormer) | ✅ | ❌ | ❌ |
|
||||||
| [Grounding DINO](model_doc/grounding-dino) | ✅ | ❌ | ❌ |
|
| [Grounding DINO](model_doc/grounding-dino) | ✅ | ❌ | ❌ |
|
||||||
| [GroupViT](model_doc/groupvit) | ✅ | ✅ | ❌ |
|
| [GroupViT](model_doc/groupvit) | ✅ | ✅ | ❌ |
|
||||||
|
|||||||
66
docs/source/en/model_doc/granitemoeshared.md
Normal file
66
docs/source/en/model_doc/granitemoeshared.md
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
<!--Copyright 2025 The HuggingFace Team. All rights reserved.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
|
||||||
|
the License. You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
|
||||||
|
an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
||||||
|
specific language governing permissions and limitations under the License.
|
||||||
|
|
||||||
|
⚠️ Note that this file is in Markdown but contain specific syntax for our doc-builder (similar to MDX) that may not be
|
||||||
|
rendered properly in your Markdown viewer.
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
# GraniteMoeShared
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
|
||||||
|
The GraniteMoe model was proposed in [Power Scheduler: A Batch Size and Token Number Agnostic Learning Rate Scheduler](https://arxiv.org/abs/2408.13359) by Yikang Shen, Matthew Stallone, Mayank Mishra, Gaoyuan Zhang, Shawn Tan, Aditya Prasad, Adriana Meza Soria, David D. Cox and Rameswar Panda.
|
||||||
|
|
||||||
|
Additionally this class GraniteMoeSharedModel adds shared experts for Moe.
|
||||||
|
|
||||||
|
```python
|
||||||
|
import torch
|
||||||
|
from transformers import AutoModelForCausalLM, AutoTokenizer
|
||||||
|
|
||||||
|
model_path = "ibm-research/moe-7b-1b-active-shared-experts"
|
||||||
|
tokenizer = AutoTokenizer.from_pretrained(model_path)
|
||||||
|
|
||||||
|
# drop device_map if running on CPU
|
||||||
|
model = AutoModelForCausalLM.from_pretrained(model_path, device_map="auto")
|
||||||
|
model.eval()
|
||||||
|
|
||||||
|
# change input text as desired
|
||||||
|
prompt = "Write a code to find the maximum value in a list of numbers."
|
||||||
|
|
||||||
|
# tokenize the text
|
||||||
|
input_tokens = tokenizer(prompt, return_tensors="pt")
|
||||||
|
# generate output tokens
|
||||||
|
output = model.generate(**input_tokens, max_new_tokens=100)
|
||||||
|
# decode output tokens into text
|
||||||
|
output = tokenizer.batch_decode(output)
|
||||||
|
# loop over the batch to print, in this example the batch size is 1
|
||||||
|
for i in output:
|
||||||
|
print(i)
|
||||||
|
```
|
||||||
|
|
||||||
|
This HF implementation is contributed by [Mayank Mishra](https://huggingface.co/mayank-mishra), [Shawn Tan](https://huggingface.co/shawntan) and [Sukriti Sharma](https://huggingface.co/SukritiSharma).
|
||||||
|
|
||||||
|
|
||||||
|
## GraniteMoeSharedConfig
|
||||||
|
|
||||||
|
[[autodoc]] GraniteMoeSharedConfig
|
||||||
|
|
||||||
|
## GraniteMoeSharedModel
|
||||||
|
|
||||||
|
[[autodoc]] GraniteMoeSharedModel
|
||||||
|
- forward
|
||||||
|
|
||||||
|
## GraniteMoeSharedForCausalLM
|
||||||
|
|
||||||
|
[[autodoc]] GraniteMoeSharedForCausalLM
|
||||||
|
- forward
|
||||||
@@ -60,6 +60,7 @@ FlashAttention-2 is currently supported for the following architectures:
|
|||||||
* [GPT-J](https://huggingface.co/docs/transformers/model_doc/gptj#transformers.GPTJModel)
|
* [GPT-J](https://huggingface.co/docs/transformers/model_doc/gptj#transformers.GPTJModel)
|
||||||
* [Granite](https://huggingface.co/docs/transformers/model_doc/granite#transformers.GraniteModel)
|
* [Granite](https://huggingface.co/docs/transformers/model_doc/granite#transformers.GraniteModel)
|
||||||
* [GraniteMoe](https://huggingface.co/docs/transformers/model_doc/granitemoe#transformers.GraniteMoeModel)
|
* [GraniteMoe](https://huggingface.co/docs/transformers/model_doc/granitemoe#transformers.GraniteMoeModel)
|
||||||
|
* [GraniteMoeShared](https://huggingface.co/docs/transformers/model_doc/granitemoeshared#transformers.GraniteMoeSharedModel)
|
||||||
* [Idefics2](https://huggingface.co/docs/transformers/model_doc/idefics2#transformers.Idefics2Model)
|
* [Idefics2](https://huggingface.co/docs/transformers/model_doc/idefics2#transformers.Idefics2Model)
|
||||||
* [Idefics3](https://huggingface.co/docs/transformers/model_doc/idefics3#transformers.Idefics3Model)
|
* [Idefics3](https://huggingface.co/docs/transformers/model_doc/idefics3#transformers.Idefics3Model)
|
||||||
* [Falcon](https://huggingface.co/docs/transformers/model_doc/falcon#transformers.FalconModel)
|
* [Falcon](https://huggingface.co/docs/transformers/model_doc/falcon#transformers.FalconModel)
|
||||||
@@ -266,6 +267,7 @@ For now, Transformers supports SDPA inference and training for the following arc
|
|||||||
* [Idefics3](https://huggingface.co/docs/transformers/model_doc/idefics3#transformers.Idefics3Model)
|
* [Idefics3](https://huggingface.co/docs/transformers/model_doc/idefics3#transformers.Idefics3Model)
|
||||||
* [I-JEPA](https://huggingface.co/docs/transformers/model_doc/ijepa#transformers.IJepaModel)
|
* [I-JEPA](https://huggingface.co/docs/transformers/model_doc/ijepa#transformers.IJepaModel)
|
||||||
* [GraniteMoe](https://huggingface.co/docs/transformers/model_doc/granitemoe#transformers.GraniteMoeModel)
|
* [GraniteMoe](https://huggingface.co/docs/transformers/model_doc/granitemoe#transformers.GraniteMoeModel)
|
||||||
|
* [GraniteMoeShared](https://huggingface.co/docs/transformers/model_doc/granitemoeshared#transformers.GraniteMoeSharedModel)
|
||||||
* [JetMoe](https://huggingface.co/docs/transformers/model_doc/jetmoe#transformers.JetMoeModel)
|
* [JetMoe](https://huggingface.co/docs/transformers/model_doc/jetmoe#transformers.JetMoeModel)
|
||||||
* [Jamba](https://huggingface.co/docs/transformers/model_doc/jamba#transformers.JambaModel)
|
* [Jamba](https://huggingface.co/docs/transformers/model_doc/jamba#transformers.JambaModel)
|
||||||
* [Llama](https://huggingface.co/docs/transformers/model_doc/llama#transformers.LlamaModel)
|
* [Llama](https://huggingface.co/docs/transformers/model_doc/llama#transformers.LlamaModel)
|
||||||
|
|||||||
@@ -496,6 +496,7 @@ _import_structure = {
|
|||||||
"models.gptj": ["GPTJConfig"],
|
"models.gptj": ["GPTJConfig"],
|
||||||
"models.granite": ["GraniteConfig"],
|
"models.granite": ["GraniteConfig"],
|
||||||
"models.granitemoe": ["GraniteMoeConfig"],
|
"models.granitemoe": ["GraniteMoeConfig"],
|
||||||
|
"models.granitemoeshared": ["GraniteMoeSharedConfig"],
|
||||||
"models.grounding_dino": [
|
"models.grounding_dino": [
|
||||||
"GroundingDinoConfig",
|
"GroundingDinoConfig",
|
||||||
"GroundingDinoProcessor",
|
"GroundingDinoProcessor",
|
||||||
@@ -2539,6 +2540,14 @@ else:
|
|||||||
"GraniteMoePreTrainedModel",
|
"GraniteMoePreTrainedModel",
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
_import_structure["models.granitemoeshared"].extend(
|
||||||
|
[
|
||||||
|
"GraniteMoeSharedForCausalLM",
|
||||||
|
"GraniteMoeSharedModel",
|
||||||
|
"GraniteMoeSharedPreTrainedModel",
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
_import_structure["models.grounding_dino"].extend(
|
_import_structure["models.grounding_dino"].extend(
|
||||||
[
|
[
|
||||||
"GroundingDinoForObjectDetection",
|
"GroundingDinoForObjectDetection",
|
||||||
@@ -5605,6 +5614,7 @@ if TYPE_CHECKING:
|
|||||||
from .models.gptj import GPTJConfig
|
from .models.gptj import GPTJConfig
|
||||||
from .models.granite import GraniteConfig
|
from .models.granite import GraniteConfig
|
||||||
from .models.granitemoe import GraniteMoeConfig
|
from .models.granitemoe import GraniteMoeConfig
|
||||||
|
from .models.granitemoeshared import GraniteMoeSharedConfig
|
||||||
from .models.grounding_dino import (
|
from .models.grounding_dino import (
|
||||||
GroundingDinoConfig,
|
GroundingDinoConfig,
|
||||||
GroundingDinoProcessor,
|
GroundingDinoProcessor,
|
||||||
@@ -7479,6 +7489,11 @@ if TYPE_CHECKING:
|
|||||||
GraniteMoeModel,
|
GraniteMoeModel,
|
||||||
GraniteMoePreTrainedModel,
|
GraniteMoePreTrainedModel,
|
||||||
)
|
)
|
||||||
|
from .models.granitemoeshared import (
|
||||||
|
GraniteMoeSharedForCausalLM,
|
||||||
|
GraniteMoeSharedModel,
|
||||||
|
GraniteMoeSharedPreTrainedModel,
|
||||||
|
)
|
||||||
from .models.grounding_dino import (
|
from .models.grounding_dino import (
|
||||||
GroundingDinoForObjectDetection,
|
GroundingDinoForObjectDetection,
|
||||||
GroundingDinoModel,
|
GroundingDinoModel,
|
||||||
|
|||||||
@@ -118,6 +118,7 @@ from . import (
|
|||||||
gptj,
|
gptj,
|
||||||
granite,
|
granite,
|
||||||
granitemoe,
|
granitemoe,
|
||||||
|
granitemoeshared,
|
||||||
grounding_dino,
|
grounding_dino,
|
||||||
groupvit,
|
groupvit,
|
||||||
helium,
|
helium,
|
||||||
|
|||||||
@@ -137,6 +137,7 @@ CONFIG_MAPPING_NAMES = OrderedDict(
|
|||||||
("gptsan-japanese", "GPTSanJapaneseConfig"),
|
("gptsan-japanese", "GPTSanJapaneseConfig"),
|
||||||
("granite", "GraniteConfig"),
|
("granite", "GraniteConfig"),
|
||||||
("granitemoe", "GraniteMoeConfig"),
|
("granitemoe", "GraniteMoeConfig"),
|
||||||
|
("granitemoeshared", "GraniteMoeSharedConfig"),
|
||||||
("granitevision", "LlavaNextConfig"),
|
("granitevision", "LlavaNextConfig"),
|
||||||
("graphormer", "GraphormerConfig"),
|
("graphormer", "GraphormerConfig"),
|
||||||
("grounding-dino", "GroundingDinoConfig"),
|
("grounding-dino", "GroundingDinoConfig"),
|
||||||
@@ -467,6 +468,7 @@ MODEL_NAMES_MAPPING = OrderedDict(
|
|||||||
("gptsan-japanese", "GPTSAN-japanese"),
|
("gptsan-japanese", "GPTSAN-japanese"),
|
||||||
("granite", "Granite"),
|
("granite", "Granite"),
|
||||||
("granitemoe", "GraniteMoeMoe"),
|
("granitemoe", "GraniteMoeMoe"),
|
||||||
|
("granitemoeshared", "GraniteMoeSharedMoe"),
|
||||||
("granitevision", "LLaVA-NeXT"),
|
("granitevision", "LLaVA-NeXT"),
|
||||||
("graphormer", "Graphormer"),
|
("graphormer", "Graphormer"),
|
||||||
("grounding-dino", "Grounding DINO"),
|
("grounding-dino", "Grounding DINO"),
|
||||||
|
|||||||
@@ -132,6 +132,7 @@ MODEL_MAPPING_NAMES = OrderedDict(
|
|||||||
("gptsan-japanese", "GPTSanJapaneseForConditionalGeneration"),
|
("gptsan-japanese", "GPTSanJapaneseForConditionalGeneration"),
|
||||||
("granite", "GraniteModel"),
|
("granite", "GraniteModel"),
|
||||||
("granitemoe", "GraniteMoeModel"),
|
("granitemoe", "GraniteMoeModel"),
|
||||||
|
("granitemoeshared", "GraniteMoeSharedModel"),
|
||||||
("graphormer", "GraphormerModel"),
|
("graphormer", "GraphormerModel"),
|
||||||
("grounding-dino", "GroundingDinoModel"),
|
("grounding-dino", "GroundingDinoModel"),
|
||||||
("groupvit", "GroupViTModel"),
|
("groupvit", "GroupViTModel"),
|
||||||
@@ -526,6 +527,7 @@ MODEL_FOR_CAUSAL_LM_MAPPING_NAMES = OrderedDict(
|
|||||||
("gptj", "GPTJForCausalLM"),
|
("gptj", "GPTJForCausalLM"),
|
||||||
("granite", "GraniteForCausalLM"),
|
("granite", "GraniteForCausalLM"),
|
||||||
("granitemoe", "GraniteMoeForCausalLM"),
|
("granitemoe", "GraniteMoeForCausalLM"),
|
||||||
|
("granitemoeshared", "GraniteMoeSharedForCausalLM"),
|
||||||
("helium", "HeliumForCausalLM"),
|
("helium", "HeliumForCausalLM"),
|
||||||
("jamba", "JambaForCausalLM"),
|
("jamba", "JambaForCausalLM"),
|
||||||
("jetmoe", "JetMoeForCausalLM"),
|
("jetmoe", "JetMoeForCausalLM"),
|
||||||
|
|||||||
27
src/transformers/models/granitemoeshared/__init__.py
Normal file
27
src/transformers/models/granitemoeshared/__init__.py
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
# Copyright 2024 The HuggingFace Team. All rights reserved.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
|
from ...utils import _LazyModule
|
||||||
|
from ...utils.import_utils import define_import_structure
|
||||||
|
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from .configuration_granitemoeshared import *
|
||||||
|
from .modeling_granitemoeshared import *
|
||||||
|
else:
|
||||||
|
import sys
|
||||||
|
|
||||||
|
_file = globals()["__file__"]
|
||||||
|
sys.modules[__name__] = _LazyModule(__name__, _file, define_import_structure(_file), module_spec=__spec__)
|
||||||
@@ -0,0 +1,198 @@
|
|||||||
|
# coding=utf-8
|
||||||
|
# Copyright 2024 EleutherAI and the HuggingFace Inc. team. All rights reserved.
|
||||||
|
#
|
||||||
|
# This code is based on EleutherAI's GPT-NeoX library and the GPT-NeoX
|
||||||
|
# and OPT implementations in this library. It has been modified from its
|
||||||
|
# original forms to accommodate minor architectural differences compared
|
||||||
|
# to GPT-NeoX and OPT used by the Meta AI team that trained the model.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
"""GraniteMoeShared model configuration"""
|
||||||
|
|
||||||
|
from ...configuration_utils import PretrainedConfig
|
||||||
|
from ...modeling_rope_utils import rope_config_validation
|
||||||
|
from ...utils import logging
|
||||||
|
|
||||||
|
|
||||||
|
logger = logging.get_logger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
class GraniteMoeSharedConfig(PretrainedConfig):
|
||||||
|
r"""
|
||||||
|
This is the configuration class to store the configuration of a [`GraniteMoeSharedModel`]. It is used to instantiate an GraniteMoeShared
|
||||||
|
model according to the specified arguments, defining the model architecture. Instantiating a configuration with the
|
||||||
|
defaults will yield a similar configuration to that of the [ibm-research/moe-7b-1b-active-shared-experts](https://huggingface.co/ibm-research/moe-7b-1b-active-shared-experts).
|
||||||
|
|
||||||
|
Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
|
||||||
|
documentation from [`PretrainedConfig`] for more information.
|
||||||
|
|
||||||
|
|
||||||
|
Args:
|
||||||
|
vocab_size (`int`, *optional*, defaults to 32000):
|
||||||
|
Vocabulary size of the GraniteMoeShared model. Defines the number of different tokens that can be represented by the
|
||||||
|
`inputs_ids` passed when calling [`GraniteMoeSharedModel`]
|
||||||
|
hidden_size (`int`, *optional*, defaults to 4096):
|
||||||
|
Dimension of the hidden representations.
|
||||||
|
intermediate_size (`int`, *optional*, defaults to 11008):
|
||||||
|
Dimension of the MLP representations.
|
||||||
|
num_hidden_layers (`int`, *optional*, defaults to 32):
|
||||||
|
Number of hidden layers in the Transformer decoder.
|
||||||
|
num_attention_heads (`int`, *optional*, defaults to 32):
|
||||||
|
Number of attention heads for each attention layer in the Transformer decoder.
|
||||||
|
num_key_value_heads (`int`, *optional*):
|
||||||
|
This is the number of key_value heads that should be used to implement Grouped Query Attention. If
|
||||||
|
`num_key_value_heads=num_attention_heads`, the model will use Multi Head Attention (MHA), if
|
||||||
|
`num_key_value_heads=1` the model will use Multi Query Attention (MQA) otherwise GQA is used. When
|
||||||
|
converting a multi-head checkpoint to a GQA checkpoint, each group key and value head should be constructed
|
||||||
|
by meanpooling all the original heads within that group. For more details checkout [this
|
||||||
|
paper](https://arxiv.org/pdf/2305.13245.pdf). If it is not specified, will default to
|
||||||
|
`num_attention_heads`.
|
||||||
|
hidden_act (`str` or `function`, *optional*, defaults to `"silu"`):
|
||||||
|
The non-linear activation function (function or string) in the decoder.
|
||||||
|
max_position_embeddings (`int`, *optional*, defaults to 2048):
|
||||||
|
The maximum sequence length that this model might ever be used with.
|
||||||
|
initializer_range (`float`, *optional*, defaults to 0.02):
|
||||||
|
The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
|
||||||
|
rms_norm_eps (`float`, *optional*, defaults to 1e-06):
|
||||||
|
The epsilon used by the rms normalization layers.
|
||||||
|
use_cache (`bool`, *optional*, defaults to `True`):
|
||||||
|
Whether or not the model should return the last key/values attentions (not used by all models). Only
|
||||||
|
relevant if `config.is_decoder=True`.
|
||||||
|
pad_token_id (`int`, *optional*):
|
||||||
|
Padding token id.
|
||||||
|
bos_token_id (`int`, *optional*, defaults to 1):
|
||||||
|
Beginning of stream token id.
|
||||||
|
eos_token_id (`int`, *optional*, defaults to 2):
|
||||||
|
End of stream token id.
|
||||||
|
tie_word_embeddings (`bool`, *optional*, defaults to `False`):
|
||||||
|
Whether to tie weight embeddings
|
||||||
|
rope_theta (`float`, *optional*, defaults to 10000.0):
|
||||||
|
The base period of the RoPE embeddings.
|
||||||
|
rope_scaling (`Dict`, *optional*):
|
||||||
|
Dictionary containing the scaling configuration for the RoPE embeddings. Currently supports two scaling
|
||||||
|
strategies: linear and dynamic. Their scaling factor must be a float greater than 1. The expected format is
|
||||||
|
`{"type": strategy name, "factor": scaling factor}`. When using this flag, don't update
|
||||||
|
`max_position_embeddings` to the expected new maximum. See the following thread for more information on how
|
||||||
|
these scaling strategies behave:
|
||||||
|
https://www.reddit.com/r/LocalLLaMA/comments/14mrgpr/dynamically_scaled_rope_further_increases/. This is an
|
||||||
|
experimental feature, subject to breaking API changes in future versions.
|
||||||
|
attention_bias (`bool`, *optional*, defaults to `False`):
|
||||||
|
Whether to use a bias in the query, key, value and output projection layers during self-attention.
|
||||||
|
attention_dropout (`float`, *optional*, defaults to 0.0):
|
||||||
|
The dropout ratio for the attention probabilities.
|
||||||
|
embedding_multiplier (`float`, *optional*, defaults to 1.0): embedding multiplier
|
||||||
|
logits_scaling (`float`, *optional*, defaults to 1.0): divisor for output logits
|
||||||
|
residual_multiplier (`float`, *optional*, defaults to 1.0): residual multiplier
|
||||||
|
attention_multiplier (`float`, *optional*, defaults to 1.0): attention multiplier
|
||||||
|
num_local_experts (`int`, *optional*, defaults to 8): total number of experts
|
||||||
|
num_experts_per_tok (`int`, *optional*, defaults to 2): number of experts per token
|
||||||
|
output_router_logits (`bool`, *optional*, defaults to `False`):
|
||||||
|
Whether or not the router logits should be returned by the model. Enabeling this will also
|
||||||
|
allow the model to output the auxiliary loss.
|
||||||
|
router_aux_loss_coef (`float`, *optional*, defaults to 0.001): router auxialiary loss coefficient
|
||||||
|
shared_intermediate_size (`int`, *optional*, defaults to 0): intermediate size for shared experts. 0 implies
|
||||||
|
no shared experts.
|
||||||
|
|
||||||
|
```python
|
||||||
|
>>> from transformers import GraniteMoeSharedModel, GraniteMoeSharedConfig
|
||||||
|
|
||||||
|
>>> # Initializing a GraniteMoeShared granitemoe-3b style configuration
|
||||||
|
>>> configuration = GraniteMoeSharedConfig()
|
||||||
|
|
||||||
|
>>> # Initializing a model from the granitemoe-7b style configuration
|
||||||
|
>>> model = GraniteMoeSharedModel(configuration)
|
||||||
|
|
||||||
|
>>> # Accessing the model configuration
|
||||||
|
>>> configuration = model.config
|
||||||
|
```"""
|
||||||
|
|
||||||
|
model_type = "granitemoeshared"
|
||||||
|
keys_to_ignore_at_inference = ["past_key_values"]
|
||||||
|
|
||||||
|
def __init__(
|
||||||
|
self,
|
||||||
|
vocab_size=32000,
|
||||||
|
hidden_size=4096,
|
||||||
|
intermediate_size=11008,
|
||||||
|
num_hidden_layers=32,
|
||||||
|
num_attention_heads=32,
|
||||||
|
num_key_value_heads=None,
|
||||||
|
hidden_act="silu",
|
||||||
|
max_position_embeddings=2048,
|
||||||
|
initializer_range=0.02,
|
||||||
|
rms_norm_eps=1e-6,
|
||||||
|
use_cache=True,
|
||||||
|
pad_token_id=None,
|
||||||
|
bos_token_id=1,
|
||||||
|
eos_token_id=2,
|
||||||
|
tie_word_embeddings=False,
|
||||||
|
rope_theta=10000.0,
|
||||||
|
rope_scaling=None,
|
||||||
|
attention_bias=False,
|
||||||
|
attention_dropout=0.0,
|
||||||
|
embedding_multiplier=1.0,
|
||||||
|
logits_scaling=1.0,
|
||||||
|
residual_multiplier=1.0,
|
||||||
|
attention_multiplier=1.0,
|
||||||
|
num_local_experts=8,
|
||||||
|
num_experts_per_tok=2,
|
||||||
|
output_router_logits=False,
|
||||||
|
router_aux_loss_coef=0.001,
|
||||||
|
shared_intermediate_size=0,
|
||||||
|
**kwargs,
|
||||||
|
):
|
||||||
|
self.vocab_size = vocab_size
|
||||||
|
self.max_position_embeddings = max_position_embeddings
|
||||||
|
self.hidden_size = hidden_size
|
||||||
|
self.intermediate_size = intermediate_size
|
||||||
|
self.num_hidden_layers = num_hidden_layers
|
||||||
|
self.num_attention_heads = num_attention_heads
|
||||||
|
|
||||||
|
# for backward compatibility
|
||||||
|
if num_key_value_heads is None:
|
||||||
|
num_key_value_heads = num_attention_heads
|
||||||
|
|
||||||
|
self.num_key_value_heads = num_key_value_heads
|
||||||
|
self.hidden_act = hidden_act
|
||||||
|
self.initializer_range = initializer_range
|
||||||
|
self.rms_norm_eps = rms_norm_eps
|
||||||
|
self.use_cache = use_cache
|
||||||
|
self.rope_theta = rope_theta
|
||||||
|
self.rope_scaling = rope_scaling
|
||||||
|
|
||||||
|
self.attention_bias = attention_bias
|
||||||
|
self.attention_dropout = attention_dropout
|
||||||
|
|
||||||
|
self.embedding_multiplier = embedding_multiplier
|
||||||
|
self.logits_scaling = logits_scaling
|
||||||
|
self.residual_multiplier = residual_multiplier
|
||||||
|
self.attention_multiplier = attention_multiplier
|
||||||
|
|
||||||
|
self.num_local_experts = num_local_experts
|
||||||
|
self.num_experts_per_tok = num_experts_per_tok
|
||||||
|
self.output_router_logits = output_router_logits
|
||||||
|
self.router_aux_loss_coef = router_aux_loss_coef
|
||||||
|
self.shared_intermediate_size = shared_intermediate_size
|
||||||
|
|
||||||
|
super().__init__(
|
||||||
|
pad_token_id=pad_token_id,
|
||||||
|
bos_token_id=bos_token_id,
|
||||||
|
eos_token_id=eos_token_id,
|
||||||
|
tie_word_embeddings=tie_word_embeddings,
|
||||||
|
**kwargs,
|
||||||
|
)
|
||||||
|
|
||||||
|
rope_config_validation(self)
|
||||||
|
|
||||||
|
|
||||||
|
__all__ = ["GraniteMoeSharedConfig"]
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,285 @@
|
|||||||
|
# coding=utf-8
|
||||||
|
# Copyright 2024 IBM and the HuggingFace Inc. team. All rights reserved.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
from typing import Optional, Tuple
|
||||||
|
|
||||||
|
import torch
|
||||||
|
import torch.utils.checkpoint
|
||||||
|
from torch import nn
|
||||||
|
|
||||||
|
from ...activations import ACT2FN
|
||||||
|
from ...cache_utils import Cache
|
||||||
|
from ...utils import add_start_docstrings, logging
|
||||||
|
from ..granitemoe.modeling_granitemoe import (
|
||||||
|
GraniteMoeDecoderLayer,
|
||||||
|
GraniteMoeForCausalLM,
|
||||||
|
GraniteMoeModel,
|
||||||
|
GraniteMoePreTrainedModel,
|
||||||
|
)
|
||||||
|
from .configuration_granitemoeshared import GraniteMoeSharedConfig
|
||||||
|
|
||||||
|
|
||||||
|
logger = logging.get_logger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
_CONFIG_FOR_DOC = "GraniteMoeSharedConfig"
|
||||||
|
|
||||||
|
|
||||||
|
class GraniteMoeSharedMLP(nn.Module):
|
||||||
|
"""
|
||||||
|
MLP layer for shared experts
|
||||||
|
|
||||||
|
Args:
|
||||||
|
config:
|
||||||
|
Configuration object with model hyperparameters.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, config: GraniteMoeSharedConfig):
|
||||||
|
super(GraniteMoeSharedMLP, self).__init__()
|
||||||
|
|
||||||
|
self.input_size = config.hidden_size
|
||||||
|
self.hidden_size = config.shared_intermediate_size
|
||||||
|
self.activation = ACT2FN[config.hidden_act]
|
||||||
|
self.input_linear = nn.Linear(self.input_size, self.hidden_size * 2, bias=False)
|
||||||
|
self.output_linear = nn.Linear(self.hidden_size, self.input_size, bias=False)
|
||||||
|
|
||||||
|
def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:
|
||||||
|
hidden_states = self.input_linear(hidden_states)
|
||||||
|
chunked_hidden_states = hidden_states.chunk(2, dim=-1)
|
||||||
|
hidden_states = self.activation(chunked_hidden_states[0]) * chunked_hidden_states[1]
|
||||||
|
hidden_states = self.output_linear(hidden_states)
|
||||||
|
return hidden_states
|
||||||
|
|
||||||
|
|
||||||
|
class GraniteMoeSharedDecoderLayer(GraniteMoeDecoderLayer):
|
||||||
|
def __init__(self, config: GraniteMoeSharedConfig, layer_idx: int):
|
||||||
|
super().__init__(config, layer_idx)
|
||||||
|
self.shared_mlp = None if config.shared_intermediate_size == 0 else GraniteMoeSharedMLP(config)
|
||||||
|
|
||||||
|
def forward(
|
||||||
|
self,
|
||||||
|
hidden_states: torch.Tensor,
|
||||||
|
attention_mask: Optional[torch.Tensor] = None,
|
||||||
|
position_ids: Optional[torch.LongTensor] = None,
|
||||||
|
past_key_value: Optional[Cache] = None,
|
||||||
|
output_attentions: Optional[bool] = False,
|
||||||
|
use_cache: Optional[bool] = False,
|
||||||
|
cache_position: Optional[torch.LongTensor] = None,
|
||||||
|
output_router_logits: Optional[bool] = False,
|
||||||
|
position_embeddings: Optional[Tuple[torch.Tensor, torch.Tensor]] = None, # necessary, but kept here for BC
|
||||||
|
**kwargs,
|
||||||
|
) -> Tuple[torch.FloatTensor, Optional[Tuple[torch.FloatTensor, torch.FloatTensor]]]:
|
||||||
|
"""
|
||||||
|
Args:
|
||||||
|
hidden_states (`torch.FloatTensor`): input to the layer of shape `(batch, seq_len, embed_dim)`
|
||||||
|
attention_mask (`torch.FloatTensor`, *optional*):
|
||||||
|
attention mask of size `(batch_size, sequence_length)` if flash attention is used or `(batch_size, 1,
|
||||||
|
query_sequence_length, key_sequence_length)` if default attention is used.
|
||||||
|
output_attentions (`bool`, *optional*):
|
||||||
|
Whether or not to return the attentions tensors of all attention layers. See `attentions` under
|
||||||
|
returned tensors for more detail.
|
||||||
|
use_cache (`bool`, *optional*):
|
||||||
|
If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding
|
||||||
|
(see `past_key_values`).
|
||||||
|
past_key_value (`Tuple(torch.FloatTensor)`, *optional*): cached past key and value projection states
|
||||||
|
cache_position (`torch.LongTensor` of shape `(sequence_length)`, *optional*):
|
||||||
|
Indices depicting the position of the input sequence tokens in the sequence
|
||||||
|
output_router_logits (`bool`, *optional*):
|
||||||
|
Whether or not to return the logits of all the routers. They are useful for computing the router loss, and
|
||||||
|
should not be returned during inference.
|
||||||
|
position_embeddings (`Tuple[torch.FloatTensor, torch.FloatTensor]`, *optional*):
|
||||||
|
Tuple containing the cosine and sine positional embeddings of shape `(batch_size, seq_len, head_dim)`,
|
||||||
|
with `head_dim` being the embedding dimension of each attention head.
|
||||||
|
kwargs (`dict`, *optional*):
|
||||||
|
Arbitrary kwargs to be ignored, used for FSDP and other methods that injects code
|
||||||
|
into the model
|
||||||
|
"""
|
||||||
|
residual = hidden_states
|
||||||
|
|
||||||
|
hidden_states = self.input_layernorm(hidden_states)
|
||||||
|
|
||||||
|
# Self Attention
|
||||||
|
hidden_states, self_attn_weights, present_key_value = self.self_attn(
|
||||||
|
hidden_states=hidden_states,
|
||||||
|
attention_mask=attention_mask,
|
||||||
|
position_ids=position_ids,
|
||||||
|
past_key_value=past_key_value,
|
||||||
|
output_attentions=output_attentions,
|
||||||
|
use_cache=use_cache,
|
||||||
|
cache_position=cache_position,
|
||||||
|
position_embeddings=position_embeddings,
|
||||||
|
**kwargs,
|
||||||
|
)
|
||||||
|
|
||||||
|
hidden_states = residual + hidden_states * self.residual_multiplier
|
||||||
|
|
||||||
|
# Fully Connected
|
||||||
|
residual = hidden_states
|
||||||
|
hidden_states = self.post_attention_layernorm(hidden_states)
|
||||||
|
moe_hidden_states, router_logits = self.block_sparse_moe(hidden_states)
|
||||||
|
|
||||||
|
if self.shared_mlp is None:
|
||||||
|
hidden_states = moe_hidden_states
|
||||||
|
else:
|
||||||
|
hidden_states = moe_hidden_states + self.shared_mlp(hidden_states)
|
||||||
|
|
||||||
|
del moe_hidden_states
|
||||||
|
|
||||||
|
hidden_states = residual + hidden_states * self.residual_multiplier
|
||||||
|
|
||||||
|
outputs = (hidden_states,)
|
||||||
|
|
||||||
|
if output_attentions:
|
||||||
|
outputs += (self_attn_weights,)
|
||||||
|
|
||||||
|
if use_cache:
|
||||||
|
outputs += (present_key_value,)
|
||||||
|
|
||||||
|
if output_router_logits:
|
||||||
|
outputs += (router_logits,)
|
||||||
|
|
||||||
|
return outputs
|
||||||
|
|
||||||
|
|
||||||
|
GRANITEMOESHARED_START_DOCSTRING = r"""
|
||||||
|
This model inherits from [`PreTrainedModel`]. Check the superclass documentation for the generic methods the
|
||||||
|
library implements for all its model (such as downloading or saving, resizing the input embeddings, pruning heads
|
||||||
|
etc.)
|
||||||
|
|
||||||
|
This model is also a PyTorch [torch.nn.Module](https://pytorch.org/docs/stable/nn.html#torch.nn.Module) subclass.
|
||||||
|
Use it as a regular PyTorch Module and refer to the PyTorch documentation for all matter related to general usage
|
||||||
|
and behavior.
|
||||||
|
|
||||||
|
Parameters:
|
||||||
|
config ([`GraniteMoeSharedConfig`]):
|
||||||
|
Model configuration class with all the parameters of the model. Initializing with a config file does not
|
||||||
|
load the weights associated with the model, only the configuration. Check out the
|
||||||
|
[`~PreTrainedModel.from_pretrained`] method to load the model weights.
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
@add_start_docstrings(
|
||||||
|
"The bare GraniteMoeShared Model outputting raw hidden-states without any specific head on top.",
|
||||||
|
GRANITEMOESHARED_START_DOCSTRING,
|
||||||
|
)
|
||||||
|
class GraniteMoeSharedPreTrainedModel(GraniteMoePreTrainedModel):
|
||||||
|
config_class = GraniteMoeSharedConfig
|
||||||
|
_no_split_modules = ["GraniteMoeSharedDecoderLayer"]
|
||||||
|
|
||||||
|
|
||||||
|
GRANITEMOESHARED_INPUTS_DOCSTRING = r"""
|
||||||
|
Args:
|
||||||
|
input_ids (`torch.LongTensor` of shape `(batch_size, sequence_length)`):
|
||||||
|
Indices of input sequence tokens in the vocabulary. Padding will be ignored by default should you provide
|
||||||
|
it.
|
||||||
|
|
||||||
|
Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
|
||||||
|
[`PreTrainedTokenizer.__call__`] for details.
|
||||||
|
|
||||||
|
[What are input IDs?](../glossary#input-ids)
|
||||||
|
attention_mask (`torch.Tensor` of shape `(batch_size, sequence_length)`, *optional*):
|
||||||
|
Mask to avoid performing attention on padding token indices. Mask values selected in `[0, 1]`:
|
||||||
|
|
||||||
|
- 1 for tokens that are **not masked**,
|
||||||
|
- 0 for tokens that are **masked**.
|
||||||
|
|
||||||
|
[What are attention masks?](../glossary#attention-mask)
|
||||||
|
|
||||||
|
Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
|
||||||
|
[`PreTrainedTokenizer.__call__`] for details.
|
||||||
|
|
||||||
|
If `past_key_values` is used, optionally only the last `input_ids` have to be input (see
|
||||||
|
`past_key_values`).
|
||||||
|
|
||||||
|
If you want to change padding behavior, you should read [`modeling_opt._prepare_decoder_attention_mask`]
|
||||||
|
and modify to your needs. See diagram 1 in [the paper](https://arxiv.org/abs/1910.13461) for more
|
||||||
|
information on the default strategy.
|
||||||
|
|
||||||
|
- 1 indicates the head is **not masked**,
|
||||||
|
- 0 indicates the head is **masked**.
|
||||||
|
position_ids (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
|
||||||
|
Indices of positions of each input sequence tokens in the position embeddings. Selected in the range `[0,
|
||||||
|
config.n_positions - 1]`.
|
||||||
|
|
||||||
|
[What are position IDs?](../glossary#position-ids)
|
||||||
|
past_key_values (`Cache` or `tuple(tuple(torch.FloatTensor))`, *optional*):
|
||||||
|
Pre-computed hidden-states (key and values in the self-attention blocks and in the cross-attention
|
||||||
|
blocks) that can be used to speed up sequential decoding. This typically consists in the `past_key_values`
|
||||||
|
returned by the model at a previous stage of decoding, when `use_cache=True` or `config.use_cache=True`.
|
||||||
|
|
||||||
|
Two formats are allowed:
|
||||||
|
- a [`~cache_utils.Cache`] instance;
|
||||||
|
- Tuple of `tuple(torch.FloatTensor)` of length `config.n_layers`, with each tuple having 2 tensors of
|
||||||
|
shape `(batch_size, num_heads, sequence_length, embed_size_per_head)`). This is also known as the legacy
|
||||||
|
cache format.
|
||||||
|
|
||||||
|
The model will output the same cache format that is fed as input. If no `past_key_values` are passed, the
|
||||||
|
legacy cache format will be returned.
|
||||||
|
|
||||||
|
If `past_key_values` are used, the user can optionally input only the last `input_ids` (those that don't
|
||||||
|
have their past key value states given to this model) of shape `(batch_size, 1)` instead of all `input_ids`
|
||||||
|
of shape `(batch_size, sequence_length)`.
|
||||||
|
inputs_embeds (`torch.FloatTensor` of shape `(batch_size, sequence_length, hidden_size)`, *optional*):
|
||||||
|
Optionally, instead of passing `input_ids` you can choose to directly pass an embedded representation. This
|
||||||
|
is useful if you want more control over how to convert `input_ids` indices into associated vectors than the
|
||||||
|
model's internal embedding lookup matrix.
|
||||||
|
use_cache (`bool`, *optional*):
|
||||||
|
If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding (see
|
||||||
|
`past_key_values`).
|
||||||
|
output_attentions (`bool`, *optional*):
|
||||||
|
Whether or not to return the attentions tensors of all attention layers. See `attentions` under returned
|
||||||
|
tensors for more detail.
|
||||||
|
output_hidden_states (`bool`, *optional*):
|
||||||
|
Whether or not to return the hidden states of all layers. See `hidden_states` under returned tensors for
|
||||||
|
more detail.
|
||||||
|
return_dict (`bool`, *optional*):
|
||||||
|
Whether or not to return a [`~utils.ModelOutput`] instead of a plain tuple.
|
||||||
|
cache_position (`torch.LongTensor` of shape `(sequence_length)`, *optional*):
|
||||||
|
Indices depicting the position of the input sequence tokens in the sequence. Contrarily to `position_ids`,
|
||||||
|
this tensor is not affected by padding. It is used to update the cache in the correct position and to infer
|
||||||
|
the complete sequence length.
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
@add_start_docstrings(
|
||||||
|
"The bare GraniteMoeShared Model outputting raw hidden-states without any specific head on top.",
|
||||||
|
GRANITEMOESHARED_START_DOCSTRING,
|
||||||
|
)
|
||||||
|
class GraniteMoeSharedModel(GraniteMoeModel):
|
||||||
|
"""
|
||||||
|
Transformer decoder consisting of *config.num_hidden_layers* layers. Each layer is a [`GraniteMoeDecoderLayer`]
|
||||||
|
|
||||||
|
Args:
|
||||||
|
config: GraniteMoeSharedConfig
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, config: GraniteMoeSharedConfig):
|
||||||
|
super().__init__(config)
|
||||||
|
self.layers = nn.ModuleList(
|
||||||
|
[GraniteMoeSharedDecoderLayer(config, layer_idx) for layer_idx in range(config.num_hidden_layers)]
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class GraniteMoeSharedForCausalLM(GraniteMoeForCausalLM):
|
||||||
|
_tied_weights_keys = ["lm_head.weight"]
|
||||||
|
|
||||||
|
def __init__(self, config: GraniteMoeSharedConfig):
|
||||||
|
super().__init__(config)
|
||||||
|
self.model = GraniteMoeSharedModel(config)
|
||||||
|
# Initialize weights and apply final processing
|
||||||
|
self.post_init()
|
||||||
|
|
||||||
|
|
||||||
|
__all__ = ["GraniteMoeSharedForCausalLM", "GraniteMoeSharedModel", "GraniteMoeSharedPreTrainedModel"]
|
||||||
@@ -4967,6 +4967,27 @@ class GraniteMoePreTrainedModel(metaclass=DummyObject):
|
|||||||
requires_backends(self, ["torch"])
|
requires_backends(self, ["torch"])
|
||||||
|
|
||||||
|
|
||||||
|
class GraniteMoeSharedForCausalLM(metaclass=DummyObject):
|
||||||
|
_backends = ["torch"]
|
||||||
|
|
||||||
|
def __init__(self, *args, **kwargs):
|
||||||
|
requires_backends(self, ["torch"])
|
||||||
|
|
||||||
|
|
||||||
|
class GraniteMoeSharedModel(metaclass=DummyObject):
|
||||||
|
_backends = ["torch"]
|
||||||
|
|
||||||
|
def __init__(self, *args, **kwargs):
|
||||||
|
requires_backends(self, ["torch"])
|
||||||
|
|
||||||
|
|
||||||
|
class GraniteMoeSharedPreTrainedModel(metaclass=DummyObject):
|
||||||
|
_backends = ["torch"]
|
||||||
|
|
||||||
|
def __init__(self, *args, **kwargs):
|
||||||
|
requires_backends(self, ["torch"])
|
||||||
|
|
||||||
|
|
||||||
class GroundingDinoForObjectDetection(metaclass=DummyObject):
|
class GroundingDinoForObjectDetection(metaclass=DummyObject):
|
||||||
_backends = ["torch"]
|
_backends = ["torch"]
|
||||||
|
|
||||||
|
|||||||
0
tests/models/granitemoeshared/__init__.py
Normal file
0
tests/models/granitemoeshared/__init__.py
Normal file
478
tests/models/granitemoeshared/test_modeling_granitemoeshared.py
Normal file
478
tests/models/granitemoeshared/test_modeling_granitemoeshared.py
Normal file
@@ -0,0 +1,478 @@
|
|||||||
|
# coding=utf-8
|
||||||
|
# Copyright 2024 The HuggingFace Inc. team. All rights reserved.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
"""Testing suite for the PyTorch GraniteMoeShared model."""
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
from parameterized import parameterized
|
||||||
|
|
||||||
|
from transformers import AutoTokenizer, GraniteMoeSharedConfig, is_torch_available, set_seed
|
||||||
|
from transformers.testing_utils import (
|
||||||
|
require_read_token,
|
||||||
|
require_torch,
|
||||||
|
require_torch_gpu,
|
||||||
|
slow,
|
||||||
|
torch_device,
|
||||||
|
)
|
||||||
|
|
||||||
|
from ...generation.test_utils import GenerationTesterMixin
|
||||||
|
from ...test_configuration_common import ConfigTester
|
||||||
|
from ...test_modeling_common import ModelTesterMixin, ids_tensor
|
||||||
|
|
||||||
|
|
||||||
|
if is_torch_available():
|
||||||
|
import torch
|
||||||
|
|
||||||
|
from transformers import (
|
||||||
|
GraniteMoeSharedForCausalLM,
|
||||||
|
GraniteMoeSharedModel,
|
||||||
|
)
|
||||||
|
from transformers.models.granitemoeshared.modeling_granitemoeshared import (
|
||||||
|
GraniteMoeSharedRotaryEmbedding,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class GraniteMoeSharedModelTester:
|
||||||
|
def __init__(
|
||||||
|
self,
|
||||||
|
parent,
|
||||||
|
batch_size=13,
|
||||||
|
seq_length=7,
|
||||||
|
is_training=True,
|
||||||
|
use_input_mask=True,
|
||||||
|
use_token_type_ids=False,
|
||||||
|
use_labels=True,
|
||||||
|
vocab_size=99,
|
||||||
|
hidden_size=32,
|
||||||
|
num_hidden_layers=2,
|
||||||
|
num_attention_heads=4,
|
||||||
|
intermediate_size=37,
|
||||||
|
shared_intermediate_size=174,
|
||||||
|
hidden_act="gelu",
|
||||||
|
hidden_dropout_prob=0.1,
|
||||||
|
attention_probs_dropout_prob=0.1,
|
||||||
|
max_position_embeddings=512,
|
||||||
|
type_vocab_size=16,
|
||||||
|
type_sequence_label_size=2,
|
||||||
|
initializer_range=0.02,
|
||||||
|
num_labels=3,
|
||||||
|
num_choices=4,
|
||||||
|
pad_token_id=0,
|
||||||
|
scope=None,
|
||||||
|
):
|
||||||
|
self.parent = parent
|
||||||
|
self.batch_size = batch_size
|
||||||
|
self.seq_length = seq_length
|
||||||
|
self.is_training = is_training
|
||||||
|
self.use_input_mask = use_input_mask
|
||||||
|
self.use_token_type_ids = use_token_type_ids
|
||||||
|
self.use_labels = use_labels
|
||||||
|
self.vocab_size = vocab_size
|
||||||
|
self.hidden_size = hidden_size
|
||||||
|
self.num_hidden_layers = num_hidden_layers
|
||||||
|
self.num_attention_heads = num_attention_heads
|
||||||
|
self.intermediate_size = intermediate_size
|
||||||
|
self.shared_intermediate_size = shared_intermediate_size
|
||||||
|
self.hidden_act = hidden_act
|
||||||
|
self.hidden_dropout_prob = hidden_dropout_prob
|
||||||
|
self.attention_probs_dropout_prob = attention_probs_dropout_prob
|
||||||
|
self.max_position_embeddings = max_position_embeddings
|
||||||
|
self.type_vocab_size = type_vocab_size
|
||||||
|
self.type_sequence_label_size = type_sequence_label_size
|
||||||
|
self.initializer_range = initializer_range
|
||||||
|
self.num_labels = num_labels
|
||||||
|
self.num_choices = num_choices
|
||||||
|
self.pad_token_id = pad_token_id
|
||||||
|
self.scope = scope
|
||||||
|
|
||||||
|
def prepare_config_and_inputs(self):
|
||||||
|
input_ids = ids_tensor([self.batch_size, self.seq_length], self.vocab_size)
|
||||||
|
|
||||||
|
input_mask = None
|
||||||
|
if self.use_input_mask:
|
||||||
|
input_mask = torch.tril(torch.ones_like(input_ids).to(torch_device))
|
||||||
|
|
||||||
|
token_type_ids = None
|
||||||
|
if self.use_token_type_ids:
|
||||||
|
token_type_ids = ids_tensor([self.batch_size, self.seq_length], self.type_vocab_size)
|
||||||
|
|
||||||
|
sequence_labels = None
|
||||||
|
token_labels = None
|
||||||
|
choice_labels = None
|
||||||
|
if self.use_labels:
|
||||||
|
sequence_labels = ids_tensor([self.batch_size], self.type_sequence_label_size)
|
||||||
|
token_labels = ids_tensor([self.batch_size, self.seq_length], self.num_labels)
|
||||||
|
choice_labels = ids_tensor([self.batch_size], self.num_choices)
|
||||||
|
|
||||||
|
config = self.get_config()
|
||||||
|
|
||||||
|
return config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels
|
||||||
|
|
||||||
|
def get_config(self):
|
||||||
|
return GraniteMoeSharedConfig(
|
||||||
|
vocab_size=self.vocab_size,
|
||||||
|
hidden_size=self.hidden_size,
|
||||||
|
num_hidden_layers=self.num_hidden_layers,
|
||||||
|
num_attention_heads=self.num_attention_heads,
|
||||||
|
intermediate_size=self.intermediate_size,
|
||||||
|
hidden_act=self.hidden_act,
|
||||||
|
hidden_dropout_prob=self.hidden_dropout_prob,
|
||||||
|
attention_probs_dropout_prob=self.attention_probs_dropout_prob,
|
||||||
|
max_position_embeddings=self.max_position_embeddings,
|
||||||
|
type_vocab_size=self.type_vocab_size,
|
||||||
|
is_decoder=False,
|
||||||
|
initializer_range=self.initializer_range,
|
||||||
|
pad_token_id=self.pad_token_id,
|
||||||
|
shared_intermediate_size=self.shared_intermediate_size,
|
||||||
|
)
|
||||||
|
|
||||||
|
def create_and_check_model(
|
||||||
|
self, config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels
|
||||||
|
):
|
||||||
|
model = GraniteMoeSharedModel(config=config)
|
||||||
|
model.to(torch_device)
|
||||||
|
model.eval()
|
||||||
|
result = model(input_ids, attention_mask=input_mask)
|
||||||
|
result = model(input_ids)
|
||||||
|
self.parent.assertEqual(result.last_hidden_state.shape, (self.batch_size, self.seq_length, self.hidden_size))
|
||||||
|
|
||||||
|
def create_and_check_model_as_decoder(
|
||||||
|
self,
|
||||||
|
config,
|
||||||
|
input_ids,
|
||||||
|
token_type_ids,
|
||||||
|
input_mask,
|
||||||
|
sequence_labels,
|
||||||
|
token_labels,
|
||||||
|
choice_labels,
|
||||||
|
encoder_hidden_states,
|
||||||
|
encoder_attention_mask,
|
||||||
|
):
|
||||||
|
config.add_cross_attention = True
|
||||||
|
model = GraniteMoeSharedModel(config)
|
||||||
|
model.to(torch_device)
|
||||||
|
model.eval()
|
||||||
|
result = model(
|
||||||
|
input_ids,
|
||||||
|
attention_mask=input_mask,
|
||||||
|
encoder_hidden_states=encoder_hidden_states,
|
||||||
|
encoder_attention_mask=encoder_attention_mask,
|
||||||
|
)
|
||||||
|
result = model(
|
||||||
|
input_ids,
|
||||||
|
attention_mask=input_mask,
|
||||||
|
encoder_hidden_states=encoder_hidden_states,
|
||||||
|
)
|
||||||
|
result = model(input_ids, attention_mask=input_mask)
|
||||||
|
self.parent.assertEqual(result.last_hidden_state.shape, (self.batch_size, self.seq_length, self.hidden_size))
|
||||||
|
|
||||||
|
def create_and_check_for_causal_lm(
|
||||||
|
self,
|
||||||
|
config,
|
||||||
|
input_ids,
|
||||||
|
token_type_ids,
|
||||||
|
input_mask,
|
||||||
|
sequence_labels,
|
||||||
|
token_labels,
|
||||||
|
choice_labels,
|
||||||
|
encoder_hidden_states,
|
||||||
|
encoder_attention_mask,
|
||||||
|
):
|
||||||
|
model = GraniteMoeSharedForCausalLM(config=config)
|
||||||
|
model.to(torch_device)
|
||||||
|
model.eval()
|
||||||
|
result = model(input_ids, attention_mask=input_mask, labels=token_labels)
|
||||||
|
self.parent.assertEqual(result.logits.shape, (self.batch_size, self.seq_length, self.vocab_size))
|
||||||
|
|
||||||
|
def create_and_check_decoder_model_past_large_inputs(
|
||||||
|
self,
|
||||||
|
config,
|
||||||
|
input_ids,
|
||||||
|
token_type_ids,
|
||||||
|
input_mask,
|
||||||
|
sequence_labels,
|
||||||
|
token_labels,
|
||||||
|
choice_labels,
|
||||||
|
encoder_hidden_states,
|
||||||
|
encoder_attention_mask,
|
||||||
|
):
|
||||||
|
config.is_decoder = True
|
||||||
|
config.add_cross_attention = True
|
||||||
|
model = GraniteMoeSharedForCausalLM(config=config)
|
||||||
|
model.to(torch_device)
|
||||||
|
model.eval()
|
||||||
|
|
||||||
|
# first forward pass
|
||||||
|
outputs = model(
|
||||||
|
input_ids,
|
||||||
|
attention_mask=input_mask,
|
||||||
|
encoder_hidden_states=encoder_hidden_states,
|
||||||
|
encoder_attention_mask=encoder_attention_mask,
|
||||||
|
use_cache=True,
|
||||||
|
)
|
||||||
|
past_key_values = outputs.past_key_values
|
||||||
|
|
||||||
|
# create hypothetical multiple next token and extent to next_input_ids
|
||||||
|
next_tokens = ids_tensor((self.batch_size, 3), config.vocab_size)
|
||||||
|
next_mask = ids_tensor((self.batch_size, 3), vocab_size=2)
|
||||||
|
|
||||||
|
# append to next input_ids and
|
||||||
|
next_input_ids = torch.cat([input_ids, next_tokens], dim=-1)
|
||||||
|
next_attention_mask = torch.cat([input_mask, next_mask], dim=-1)
|
||||||
|
|
||||||
|
output_from_no_past = model(
|
||||||
|
next_input_ids,
|
||||||
|
attention_mask=next_attention_mask,
|
||||||
|
encoder_hidden_states=encoder_hidden_states,
|
||||||
|
encoder_attention_mask=encoder_attention_mask,
|
||||||
|
output_hidden_states=True,
|
||||||
|
)["hidden_states"][0]
|
||||||
|
output_from_past = model(
|
||||||
|
next_tokens,
|
||||||
|
attention_mask=next_attention_mask,
|
||||||
|
encoder_hidden_states=encoder_hidden_states,
|
||||||
|
encoder_attention_mask=encoder_attention_mask,
|
||||||
|
past_key_values=past_key_values,
|
||||||
|
output_hidden_states=True,
|
||||||
|
)["hidden_states"][0]
|
||||||
|
|
||||||
|
# select random slice
|
||||||
|
random_slice_idx = ids_tensor((1,), output_from_past.shape[-1]).item()
|
||||||
|
output_from_no_past_slice = output_from_no_past[:, -3:, random_slice_idx].detach()
|
||||||
|
output_from_past_slice = output_from_past[:, :, random_slice_idx].detach()
|
||||||
|
|
||||||
|
self.parent.assertTrue(output_from_past_slice.shape[1] == next_tokens.shape[1])
|
||||||
|
|
||||||
|
# test that outputs are equal for slice
|
||||||
|
self.parent.assertTrue(torch.allclose(output_from_past_slice, output_from_no_past_slice, atol=1e-3))
|
||||||
|
|
||||||
|
def prepare_config_and_inputs_for_common(self):
|
||||||
|
config_and_inputs = self.prepare_config_and_inputs()
|
||||||
|
(
|
||||||
|
config,
|
||||||
|
input_ids,
|
||||||
|
token_type_ids,
|
||||||
|
input_mask,
|
||||||
|
sequence_labels,
|
||||||
|
token_labels,
|
||||||
|
choice_labels,
|
||||||
|
) = config_and_inputs
|
||||||
|
inputs_dict = {"input_ids": input_ids, "attention_mask": input_mask}
|
||||||
|
return config, inputs_dict
|
||||||
|
|
||||||
|
|
||||||
|
@require_torch
|
||||||
|
class GraniteMoeSharedModelTest(ModelTesterMixin, GenerationTesterMixin, unittest.TestCase):
|
||||||
|
all_model_classes = (
|
||||||
|
(
|
||||||
|
GraniteMoeSharedModel,
|
||||||
|
GraniteMoeSharedForCausalLM,
|
||||||
|
)
|
||||||
|
if is_torch_available()
|
||||||
|
else ()
|
||||||
|
)
|
||||||
|
pipeline_model_mapping = (
|
||||||
|
{
|
||||||
|
"feature-extraction": GraniteMoeSharedModel,
|
||||||
|
"text-generation": GraniteMoeSharedForCausalLM,
|
||||||
|
}
|
||||||
|
if is_torch_available()
|
||||||
|
else {}
|
||||||
|
)
|
||||||
|
test_headmasking = False
|
||||||
|
test_pruning = False
|
||||||
|
fx_compatible = False
|
||||||
|
|
||||||
|
# Need to use `0.8` instead of `0.9` for `test_cpu_offload`
|
||||||
|
# This is because we are hitting edge cases with the causal_mask buffer
|
||||||
|
model_split_percents = [0.5, 0.7, 0.8]
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
self.model_tester = GraniteMoeSharedModelTester(self)
|
||||||
|
self.config_tester = ConfigTester(self, config_class=GraniteMoeSharedConfig, hidden_size=37)
|
||||||
|
|
||||||
|
def test_config(self):
|
||||||
|
self.config_tester.run_common_tests()
|
||||||
|
|
||||||
|
def test_model(self):
|
||||||
|
config_and_inputs = self.model_tester.prepare_config_and_inputs()
|
||||||
|
self.model_tester.create_and_check_model(*config_and_inputs)
|
||||||
|
|
||||||
|
def test_model_various_embeddings(self):
|
||||||
|
config_and_inputs = self.model_tester.prepare_config_and_inputs()
|
||||||
|
for type in ["absolute", "relative_key", "relative_key_query"]:
|
||||||
|
config_and_inputs[0].position_embedding_type = type
|
||||||
|
self.model_tester.create_and_check_model(*config_and_inputs)
|
||||||
|
|
||||||
|
@unittest.skip("GraniteMoeShared buffers include complex numbers, which breaks this test")
|
||||||
|
def test_save_load_fast_init_from_base(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
@parameterized.expand([("linear",), ("dynamic",)])
|
||||||
|
def test_model_rope_scaling_from_config(self, scaling_type):
|
||||||
|
config, _ = self.model_tester.prepare_config_and_inputs_for_common()
|
||||||
|
short_input = ids_tensor([1, 10], config.vocab_size)
|
||||||
|
long_input = ids_tensor([1, int(config.max_position_embeddings * 1.5)], config.vocab_size)
|
||||||
|
|
||||||
|
set_seed(42) # Fixed seed at init time so the two models get the same random weights
|
||||||
|
original_model = GraniteMoeSharedModel(config)
|
||||||
|
original_model.to(torch_device)
|
||||||
|
original_model.eval()
|
||||||
|
original_short_output = original_model(short_input).last_hidden_state
|
||||||
|
original_long_output = original_model(long_input).last_hidden_state
|
||||||
|
|
||||||
|
set_seed(42) # Fixed seed at init time so the two models get the same random weights
|
||||||
|
config.rope_scaling = {"type": scaling_type, "factor": 10.0}
|
||||||
|
scaled_model = GraniteMoeSharedModel(config)
|
||||||
|
scaled_model.to(torch_device)
|
||||||
|
scaled_model.eval()
|
||||||
|
scaled_short_output = scaled_model(short_input).last_hidden_state
|
||||||
|
scaled_long_output = scaled_model(long_input).last_hidden_state
|
||||||
|
|
||||||
|
# Dynamic scaling does not change the RoPE embeddings until it receives an input longer than the original
|
||||||
|
# maximum sequence length, so the outputs for the short input should match.
|
||||||
|
if scaling_type == "dynamic":
|
||||||
|
torch.testing.assert_close(original_short_output, scaled_short_output, rtol=1e-5, atol=1e-5)
|
||||||
|
else:
|
||||||
|
self.assertFalse(torch.allclose(original_short_output, scaled_short_output, atol=1e-5))
|
||||||
|
|
||||||
|
# The output should be different for long inputs
|
||||||
|
self.assertFalse(torch.allclose(original_long_output, scaled_long_output, atol=1e-5))
|
||||||
|
|
||||||
|
def test_model_rope_scaling(self):
|
||||||
|
config, _ = self.model_tester.prepare_config_and_inputs_for_common()
|
||||||
|
scaling_factor = 10
|
||||||
|
short_input_length = 10
|
||||||
|
long_input_length = int(config.max_position_embeddings * 1.5)
|
||||||
|
|
||||||
|
# Inputs
|
||||||
|
x = torch.randn(1, dtype=torch.float32, device=torch_device) # used exlusively to get the dtype and the device
|
||||||
|
position_ids_short = torch.arange(short_input_length, dtype=torch.long, device=torch_device)
|
||||||
|
position_ids_short = position_ids_short.unsqueeze(0)
|
||||||
|
position_ids_long = torch.arange(long_input_length, dtype=torch.long, device=torch_device)
|
||||||
|
position_ids_long = position_ids_long.unsqueeze(0)
|
||||||
|
|
||||||
|
# Sanity check original RoPE
|
||||||
|
original_rope = GraniteMoeSharedRotaryEmbedding(config=config).to(torch_device)
|
||||||
|
original_cos_short, original_sin_short = original_rope(x, position_ids_short)
|
||||||
|
original_cos_long, original_sin_long = original_rope(x, position_ids_long)
|
||||||
|
torch.testing.assert_close(original_cos_short, original_cos_long[:, :short_input_length, :])
|
||||||
|
torch.testing.assert_close(original_sin_short, original_sin_long[:, :short_input_length, :])
|
||||||
|
|
||||||
|
# Sanity check linear RoPE scaling
|
||||||
|
# New position "x" should match original position with index "x/scaling_factor"
|
||||||
|
config.rope_scaling = {"type": "linear", "factor": scaling_factor}
|
||||||
|
linear_scaling_rope = GraniteMoeSharedRotaryEmbedding(config=config).to(torch_device)
|
||||||
|
linear_cos_short, linear_sin_short = linear_scaling_rope(x, position_ids_short)
|
||||||
|
linear_cos_long, linear_sin_long = linear_scaling_rope(x, position_ids_long)
|
||||||
|
torch.testing.assert_close(linear_cos_short, linear_cos_long[:, :short_input_length, :])
|
||||||
|
torch.testing.assert_close(linear_sin_short, linear_sin_long[:, :short_input_length, :])
|
||||||
|
for new_position in range(0, long_input_length, scaling_factor):
|
||||||
|
original_position = int(new_position // scaling_factor)
|
||||||
|
torch.testing.assert_close(linear_cos_long[:, new_position, :], original_cos_long[:, original_position, :])
|
||||||
|
torch.testing.assert_close(linear_sin_long[:, new_position, :], original_sin_long[:, original_position, :])
|
||||||
|
|
||||||
|
# Sanity check Dynamic NTK RoPE scaling
|
||||||
|
# Scaling should only be observed after a long input is fed. We can observe that the frequencies increase
|
||||||
|
# with scaling_factor (or that `inv_freq` decreases)
|
||||||
|
config.rope_scaling = {"type": "dynamic", "factor": scaling_factor}
|
||||||
|
ntk_scaling_rope = GraniteMoeSharedRotaryEmbedding(config=config).to(torch_device)
|
||||||
|
ntk_cos_short, ntk_sin_short = ntk_scaling_rope(x, position_ids_short)
|
||||||
|
ntk_cos_long, ntk_sin_long = ntk_scaling_rope(x, position_ids_long)
|
||||||
|
torch.testing.assert_close(ntk_cos_short, original_cos_short)
|
||||||
|
torch.testing.assert_close(ntk_sin_short, original_sin_short)
|
||||||
|
with self.assertRaises(AssertionError):
|
||||||
|
torch.testing.assert_close(ntk_cos_long, original_cos_long)
|
||||||
|
with self.assertRaises(AssertionError):
|
||||||
|
torch.testing.assert_close(ntk_sin_long, original_sin_long)
|
||||||
|
self.assertTrue((ntk_scaling_rope.inv_freq <= original_rope.inv_freq).all())
|
||||||
|
|
||||||
|
# Sanity check Yarn RoPE scaling
|
||||||
|
# Scaling should be over the entire input
|
||||||
|
config.rope_scaling = {"type": "yarn", "factor": scaling_factor}
|
||||||
|
yarn_scaling_rope = GraniteMoeSharedRotaryEmbedding(config=config).to(torch_device)
|
||||||
|
yarn_cos_short, yarn_sin_short = yarn_scaling_rope(x, position_ids_short)
|
||||||
|
yarn_cos_long, yarn_sin_long = yarn_scaling_rope(x, position_ids_long)
|
||||||
|
torch.testing.assert_close(yarn_cos_short, yarn_cos_long[:, :short_input_length, :])
|
||||||
|
torch.testing.assert_close(yarn_sin_short, yarn_sin_long[:, :short_input_length, :])
|
||||||
|
with self.assertRaises(AssertionError):
|
||||||
|
torch.testing.assert_close(yarn_cos_short, original_cos_short)
|
||||||
|
with self.assertRaises(AssertionError):
|
||||||
|
torch.testing.assert_close(yarn_sin_short, original_sin_short)
|
||||||
|
with self.assertRaises(AssertionError):
|
||||||
|
torch.testing.assert_close(yarn_cos_long, original_cos_long)
|
||||||
|
with self.assertRaises(AssertionError):
|
||||||
|
torch.testing.assert_close(yarn_sin_long, original_sin_long)
|
||||||
|
|
||||||
|
|
||||||
|
@require_torch_gpu
|
||||||
|
class GraniteMoeSharedIntegrationTest(unittest.TestCase):
|
||||||
|
# This variable is used to determine which CUDA device are we using for our runners (A10 or T4)
|
||||||
|
# Depending on the hardware we get different logits / generations
|
||||||
|
cuda_compute_capability_major_version = None
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def setUpClass(cls):
|
||||||
|
if is_torch_available() and torch.cuda.is_available():
|
||||||
|
# 8 is for A100 / A10 and 7 for T4
|
||||||
|
cls.cuda_compute_capability_major_version = torch.cuda.get_device_capability()[0]
|
||||||
|
|
||||||
|
@slow
|
||||||
|
@require_read_token
|
||||||
|
def test_model_3b_logits(self):
|
||||||
|
input_ids = [1, 306, 4658, 278, 6593, 310, 2834, 338]
|
||||||
|
|
||||||
|
model = GraniteMoeSharedForCausalLM.from_pretrained("ibm/PowerMoE-3b", device_map="auto")
|
||||||
|
|
||||||
|
with torch.no_grad():
|
||||||
|
out = model(torch.tensor([input_ids]).to(torch_device))
|
||||||
|
|
||||||
|
# fmt: off
|
||||||
|
# Expected mean on dim = -1
|
||||||
|
EXPECTED_MEAN = torch.tensor([[-2.2122, -1.6632, -2.9269, -2.3344, -2.0143, -3.0146, -2.6839, -2.5610]])
|
||||||
|
|
||||||
|
torch.testing.assert_close(EXPECTED_MEAN.to(torch_device), out.logits.float().mean(-1), rtol=1e-2, atol=1e-2)
|
||||||
|
|
||||||
|
# slicing logits[0, 0, 0:15]
|
||||||
|
EXPECTED_SLICE = torch.tensor([[4.8785, -2.2890, -2.2892, -2.2885, -2.2890, -3.5007, -2.2897, -2.2892,
|
||||||
|
-2.2895, -2.2891, -2.2887, -2.2882, -2.2889, -2.2898, -2.2892]])
|
||||||
|
# fmt: on
|
||||||
|
|
||||||
|
self.assertTrue(
|
||||||
|
torch.allclose(
|
||||||
|
EXPECTED_SLICE.to(torch_device),
|
||||||
|
out.logits[0, 0, :15].float(),
|
||||||
|
atol=1e-3,
|
||||||
|
rtol=1e-3,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
@slow
|
||||||
|
def test_model_3b_generation(self):
|
||||||
|
# ground truth text generated with dola_layers="low", repetition_penalty=1.2
|
||||||
|
EXPECTED_TEXT_COMPLETION = (
|
||||||
|
"Simply put, the theory of relativity states that \n$$\n\\frac{d^2x^\\mu}{d\\tau^2} = "
|
||||||
|
"\\frac{1}{c^2}\\frac{d^2x^\\mu}{dt^2}\n$$\nwhere $x^\\mu$ is a four-vector, $\\tau$ is the proper time"
|
||||||
|
)
|
||||||
|
prompt = "Simply put, the theory of relativity states that "
|
||||||
|
tokenizer = AutoTokenizer.from_pretrained("ibm/PowerMoE-3b")
|
||||||
|
model = GraniteMoeSharedForCausalLM.from_pretrained("ibm/PowerMoE-3b", device_map="auto")
|
||||||
|
model_inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
|
||||||
|
|
||||||
|
# greedy generation outputs
|
||||||
|
generated_ids = model.generate(**model_inputs, max_new_tokens=64, top_p=None, temperature=1, do_sample=False)
|
||||||
|
text = tokenizer.decode(generated_ids[0], skip_special_tokens=True)
|
||||||
|
|
||||||
|
self.assertEqual(EXPECTED_TEXT_COMPLETION, text)
|
||||||
Reference in New Issue
Block a user