Upload configuration_internvl_chat.py with huggingface_hub
Browse files
configuration_internvl_chat.py
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# --------------------------------------------------------
|
| 2 |
+
# InternVL
|
| 3 |
+
# Copyright (c) 2023 OpenGVLab
|
| 4 |
+
# Licensed under The MIT License [see LICENSE for details]
|
| 5 |
+
# --------------------------------------------------------
|
| 6 |
+
|
| 7 |
+
import copy
|
| 8 |
+
|
| 9 |
+
from transformers import AutoConfig, LlamaConfig
|
| 10 |
+
from transformers.configuration_utils import PretrainedConfig
|
| 11 |
+
from transformers.utils import logging
|
| 12 |
+
|
| 13 |
+
from .configuration_intern_vit import InternVisionConfig
|
| 14 |
+
from .configuration_internlm2 import InternLM2Config
|
| 15 |
+
|
| 16 |
+
logger = logging.get_logger(__name__)
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
class InternVLChatConfig(PretrainedConfig):
|
| 20 |
+
model_type = 'internvl_chat'
|
| 21 |
+
is_composition = True
|
| 22 |
+
|
| 23 |
+
def __init__(
|
| 24 |
+
self,
|
| 25 |
+
vision_config=None,
|
| 26 |
+
llm_config=None,
|
| 27 |
+
use_backbone_lora=0,
|
| 28 |
+
use_llm_lora=0,
|
| 29 |
+
select_layer=-1,
|
| 30 |
+
force_image_size=None,
|
| 31 |
+
downsample_ratio=0.5,
|
| 32 |
+
template=None,
|
| 33 |
+
dynamic_image_size=False,
|
| 34 |
+
use_thumbnail=False,
|
| 35 |
+
ps_version='v1',
|
| 36 |
+
min_dynamic_patch=1,
|
| 37 |
+
max_dynamic_patch=6,
|
| 38 |
+
**kwargs):
|
| 39 |
+
super().__init__(**kwargs)
|
| 40 |
+
|
| 41 |
+
if vision_config is None:
|
| 42 |
+
vision_config = {}
|
| 43 |
+
logger.info('vision_config is None. Initializing the InternVisionConfig with default values.')
|
| 44 |
+
|
| 45 |
+
if llm_config is None:
|
| 46 |
+
llm_config = {}
|
| 47 |
+
logger.info('llm_config is None. Initializing the LlamaConfig config with default values (`LlamaConfig`).')
|
| 48 |
+
|
| 49 |
+
self.vision_config = InternVisionConfig(**vision_config)
|
| 50 |
+
if llm_config['architectures'][0] == 'LlamaForCausalLM':
|
| 51 |
+
self.llm_config = LlamaConfig(**llm_config)
|
| 52 |
+
elif llm_config['architectures'][0] == 'InternLM2ForCausalLM':
|
| 53 |
+
self.llm_config = InternLM2Config(**llm_config)
|
| 54 |
+
else:
|
| 55 |
+
raise ValueError('Unsupported architecture: {}'.format(llm_config['architectures'][0]))
|
| 56 |
+
self.use_backbone_lora = use_backbone_lora
|
| 57 |
+
self.use_llm_lora = use_llm_lora
|
| 58 |
+
self.select_layer = select_layer
|
| 59 |
+
self.force_image_size = force_image_size
|
| 60 |
+
self.downsample_ratio = downsample_ratio
|
| 61 |
+
self.template = template
|
| 62 |
+
self.dynamic_image_size = dynamic_image_size
|
| 63 |
+
self.use_thumbnail = use_thumbnail
|
| 64 |
+
self.ps_version = ps_version # pixel shuffle version
|
| 65 |
+
self.min_dynamic_patch = min_dynamic_patch
|
| 66 |
+
self.max_dynamic_patch = max_dynamic_patch
|
| 67 |
+
|
| 68 |
+
logger.info(f'vision_select_layer: {self.select_layer}')
|
| 69 |
+
logger.info(f'ps_version: {self.ps_version}')
|
| 70 |
+
logger.info(f'min_dynamic_patch: {self.min_dynamic_patch}')
|
| 71 |
+
logger.info(f'max_dynamic_patch: {self.max_dynamic_patch}')
|
| 72 |
+
|
| 73 |
+
def to_dict(self):
|
| 74 |
+
"""
|
| 75 |
+
Serializes this instance to a Python dictionary. Override the default [`~PretrainedConfig.to_dict`].
|
| 76 |
+
|
| 77 |
+
Returns:
|
| 78 |
+
`Dict[str, any]`: Dictionary of all the attributes that make up this configuration instance,
|
| 79 |
+
"""
|
| 80 |
+
output = copy.deepcopy(self.__dict__)
|
| 81 |
+
output['vision_config'] = self.vision_config.to_dict()
|
| 82 |
+
output['llm_config'] = self.llm_config.to_dict()
|
| 83 |
+
output['model_type'] = self.__class__.model_type
|
| 84 |
+
output['use_backbone_lora'] = self.use_backbone_lora
|
| 85 |
+
output['use_llm_lora'] = self.use_llm_lora
|
| 86 |
+
output['select_layer'] = self.select_layer
|
| 87 |
+
output['force_image_size'] = self.force_image_size
|
| 88 |
+
output['downsample_ratio'] = self.downsample_ratio
|
| 89 |
+
output['template'] = self.template
|
| 90 |
+
output['dynamic_image_size'] = self.dynamic_image_size
|
| 91 |
+
output['use_thumbnail'] = self.use_thumbnail
|
| 92 |
+
output['ps_version'] = self.ps_version
|
| 93 |
+
output['min_dynamic_patch'] = self.min_dynamic_patch
|
| 94 |
+
output['max_dynamic_patch'] = self.max_dynamic_patch
|
| 95 |
+
|
| 96 |
+
return output
|